Converts a string to camelCase
$ component install vendethiel/to-camel-case
$ npm install to-camel-case
toCamelCase("hello-ya").should.equal("helloYa")
toCamelCase("chocolate-rain").should.equal("chocolateRain")
toCamelCase("hello-howare-ya", true).should.equal("HelloHowareYa")
MIT