Turns hyphen-separated object keys or strings into camel-cased versions.
npm install camelify
camelify('one-two');
// => 'oneTwo'
camelify({
'first-name': 'John',
'last-name': 'Smith'
});
// => { firstName: 'John', 'lastName': 'Smith' }
npm test