detect-case
v1.0.0
Published
Detects the casing of the input string (camelcase, lowercase, snakecase etc).
Downloads
93
Maintainers
Readme
detect-case
Detects the casing of the input string (camelcase, lowercase, snakecase etc).
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install
Install with npm :
$ npm install --save detect-case
Usage
The main export is a function that takes a string as the only argument. To ensure correct results, don't pass a string with whitespace.
const detect = require('detect-case');
console.log(detect('foo')); // lowercase
console.log(detect('FOO')); // uppercase
console.log(detect('Foo')); // titlecase
console.log(detect('FooBar')); // pascalcase
console.log(detect('fooBar')); // camelcase
console.log(detect('foo_bar')); // snakecase
console.log(detect('FOO_BAR')); // uppersnake
About
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Author
Jon Schlinkert
License
Copyright © 2021, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.8.0, on February 19, 2021.