mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 21:07:23 -04:00
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
camelcase
Convert a dash/dot/underscore/space separated string to camelCase:
foo-bar
→fooBar
Install
$ npm install --save camelcase
Usage
const camelCase = require('camelcase');
camelCase('foo-bar');
//=> 'fooBar'
camelCase('foo_bar');
//=> 'fooBar'
camelCase('Foo-Bar');
//=> 'fooBar'
camelCase('--foo.bar');
//=> 'fooBar'
camelCase('__foo__bar__');
//=> 'fooBar'
camelCase('foo bar');
//=> 'fooBar'
console.log(process.argv[3]);
//=> '--foo-bar'
camelCase(process.argv[3]);
//=> 'fooBar'
camelCase('foo', 'bar');
//=> 'fooBar'
camelCase('__foo__', '--bar');
//=> 'fooBar'
Related
- decamelize - The inverse of this module
- uppercamelcase - Like this module, but to PascalCase instead of camelCase
License
MIT © Sindre Sorhus