Skip to content

Instantly share code, notes, and snippets.

@gerzhan
Created December 27, 2015 12:18
Show Gist options
  • Save gerzhan/8d1724f5d269fbe1ccda to your computer and use it in GitHub Desktop.
Save gerzhan/8d1724f5d269fbe1ccda to your computer and use it in GitHub Desktop.
To Camel Case build
function toCamelCase(str) {
return str.replace(/[_-][a-z]/ig, function (s) {
return s.substring(1).toUpperCase();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment