We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
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