string-to-camelcase
v1.0.0
Published
Convert string format to camelcase
Downloads
2
Readme
Convert to Roman
Convert string to camelcase
Installation
npm install string-to-camelcase
Usage/Examples
const convert = require('string-to-camelcase')
var hello = convert.toCamelCase("hello-world")
console.log(hello);
// output helloWorld
var hello = convert.toCamelCase("hello_world")
console.log(hello);
// output helloWorld