js-convert-case icon indicating copy to clipboard operation
js-convert-case copied to clipboard

⛹️‍♂️ JavaScript Convert Cases Package 🏌️‍♀️ Use for both Node.JS and Browser 🎯🎯

Results 5 js-convert-case issues
Sort by recently updated
recently updated
newest added

``` toKebabCase('FOOBarBaz') ``` returns `foobar-baz` and should return `foo-bar-baz`

Getting this error.RangeError: Maximum call stack size exceeded

Just discovered that I'm unable to convert an array unfortunately. ``` const data = [ { id: 1, user_id: 1, created_at: '2021-07-20T15:40:20.170121+00:00'}, {id: 2, user_id: 2, created_at: '2021-07-20T15:40:20.170121+00:00'}, ]; const...

How can this module be imported into a browser script file? Downloading from a CDN and having the script embedded in html works for me, but I would like to...

In `package.json` the license is listed as MIT (and this is shown on npmjs.com) but the `LICENSE` file actually contains the text of the GPL license (and this is what...