node-hump ##
convert a string(like: hello-world) to hump-style string(to: helloWorld)
$3
npm install hump
$3
var hump = require('hump');
console.log(hump("hello-world", "-"))
// => helloWorld
console.log(hump("hello_world", "_"))
// => helloWorld
$3
MIT