Skip to content

Instantly share code, notes, and snippets.

@stbaer
Created April 30, 2018 06:33
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 stbaer/129ca88f19212f12369d6e1212e5a60c to your computer and use it in GitHub Desktop.
Save stbaer/129ca88f19212f12369d6e1212e5a60c to your computer and use it in GitHub Desktop.
camelcase
export default str => str
.replace(/^[_.\- ]+/, '')
.toLowerCase()
.replace(/[_.\- ]+(\w|$)/g, (m, p1) => p1.toUpperCase())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment