Package Exports
- camelcase
- camelcase/index
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (camelcase) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
camelcase 
Convert a dash/dot/underscore/space separated string to camelCase:
foo-bar
→fooBar
Install
$ npm install --save camelcase
Usage
var 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
See decamelize
for the inverse.
License
MIT © Sindre Sorhus