update README

This commit is contained in:
Eric Woodward 2024-01-27 12:21:23 -05:00
parent 2f0847eddf
commit 7fd66b7c76
2 changed files with 3 additions and 3 deletions

View File

@ -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[]_)

View File

@ -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",