You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
nau 5fa880dd01 database externa 7 years ago
..
index.js get token for user, post users, get all users, post thought, get all thoughts. runs ok 7 years ago
license get token for user, post users, get all users, post thought, get all thoughts. runs ok 7 years ago
package.json database externa 7 years ago
readme.md get token for user, post users, get all users, post thought, get all thoughts. runs ok 7 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