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.
homestay/minsu/admin/node_modules/uppercamelcase
ytt 2545d38280
代码
8 months ago
..
node_modules/camelcase 代码 8 months ago
LICENSE 代码 8 months ago
README.md 代码 8 months ago
index.js 代码 8 months ago
package.json 代码 8 months ago

README.md

UpperCamelCase Build Status

Convert a dash/dot/underscore/space separated string to UpperCamelCase: foo-barFooBar

Install

$ npm install --save uppercamelcase

Usage

var upperCamelCase = require('uppercamelcase');

upperCamelCase('foo-bar');
//=> FooBar

upperCamelCase('foo_bar');
//=> FooBar

upperCamelCase('Foo-Bar');
//=> FooBar

upperCamelCase('--foo.bar');
//=> FooBar

upperCamelCase('__foo__bar__');
//=> FooBar

upperCamelCase('foo bar');
//=> FooBar

console.log(process.argv[3]);
//=> --foo-bar
upperCamelCase(process.argv[3]);
//=> FooBar

camelCase('foo', 'bar');
//=> 'FooBar'

camelCase('__foo__', '--bar');
//=> 'FooBar'

License

MIT © Sam Verschueren