hump
v0.0.4
Published
convert a string(like: hello-world) to camel-cased string(to: helloWorld)
Maintainers
Readme
node-hump
convert a string(like: hello-world) to hump-style string(to: helloWorld)
Install
npm install humpUsage
var hump = require('hump');
console.log(hump("hello-world", "-"))
// => helloWorld
console.log(hump("hello_world", "_"))
// => helloWorldLicense
MIT
