You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
alfiepates b0b64a865d initial dev commit. everything is broken. 8 years ago
..
index.js initial dev commit. everything is broken. 8 years ago
license initial dev commit. everything is broken. 8 years ago
package.json initial dev commit. everything is broken. 8 years ago
readme.md initial dev commit. everything is broken. 8 years ago

readme.md

camelcase Build Status

Convert a dash/dot/underscore/space separated string to camelCase: foo-barfooBar

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

See decamelize for the inverse.

License

MIT © Sindre Sorhus