JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 100141653
  • Score
    100M100P100Q259547F
  • License MIT

Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar

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 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

License

MIT © Sindre Sorhus