82f2b76e25
We now use webpack instead of SystemJS, effectively bundling modules into one file (plus commons chunks) for every entry point. This results in a much smaller extension size (almost half). Furthermore we use yarn/npm even for extension run-time dependencies. This relieves us from manually vendoring and building dependencies. It's also easier to understand for new developers familiar with node.
58 lines
1.0 KiB
Markdown
58 lines
1.0 KiB
Markdown
# camelcase [![Build Status](https://travis-ci.org/sindresorhus/camelcase.svg?branch=master)](https://travis-ci.org/sindresorhus/camelcase)
|
|
|
|
> Convert a dash/dot/underscore/space separated string to camelCase: `foo-bar` → `fooBar`
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install --save camelcase
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
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](https://github.com/sindresorhus/decamelize) - The inverse of this module
|
|
- [uppercamelcase](https://github.com/SamVerschueren/uppercamelcase) - Like this module, but to PascalCase instead of camelCase
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](http://sindresorhus.com)
|