Converts a string with words separated by dashes into a camel cased string.
const dashToCamelcase = require('dash-to-camelcase')
dashToCamelcase('name-of-component')
// => 'nameOfComponent'
Returns the modified string.
Type: string
Converts a string with words separated by dashes into a camel cased string.
JavaScriptMIT