From 7fd66b7c76ec9fba8651ab93fc76aa8b39fd658e Mon Sep 17 00:00:00 2001 From: Eric Woodward Date: Sat, 27 Jan 2024 12:21:23 -0500 Subject: [PATCH] update README --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1282160..bbebcd6 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,12 @@ I figure that publishing them in a [public repo](https://git.itsericwoodward.com The functions exported by this library are: -- **convertCamelToUpperSnakeCase**(`str``: _string_) +- **convertCamelToUpperSnakeCase**(`str`: _string_) - Converts textLikeThis (or TextLikeThis) to TEXT_LIKE_THIS. - _Returns_: Converted version of `str` - **getDirname**() - Reads and returns variables `__dirname` and `__filename`, as with CJS Node. - - _Returns_: { `__dirname`: _string_, `__filename`: string } + - _Returns_: { `__dirname`: _string_, `__filename`: _string_ } - **getTime**() - _Returns_: the current time in a standardized format. - **log**(`...msg`: _unknown[]_) diff --git a/package.json b/package.json index a7d0cc9..30a6a48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@itsericwoodward/utils", - "version": "0.1.1", + "version": "0.1.2", "description": "A small collection of common libraries and functions the author likes to use in his Node applications.", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js",