convert-string-camel
v1.0.1
Published
converts dash/underscore delimited words into camel case
Downloads
4
Maintainers
Readme
convert-string-camel
Convert a dash,dot,underscore separated string to camelCase
Install
$ npm i convert-string-camel
Usage
var input = "hello-world";
var output = toCamelCase(input);
console.log(output); // Output: helloWorld