Skip to content

Instantly share code, notes, and snippets.

@matijs
Last active November 3, 2016 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matijs/8b319bc9c7281ba3fa421a97f2edf525 to your computer and use it in GitHub Desktop.
Save matijs/8b319bc9c7281ba3fa421a97f2edf525 to your computer and use it in GitHub Desktop.
Convert foo-bar-baz into a camelCased version
const camelCase = str => str.split( /[_,-]+/ ).map( ( item, index ) => index === 0 ? item : item.charAt(0).toUpperCase() + item.slice(1).toLowerCase()
).join('');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment