Skip to content

Instantly share code, notes, and snippets.

@kekscom
Created March 22, 2016 23:21
Show Gist options
  • Save kekscom/d9eb5effe656d9d3ebf9 to your computer and use it in GitHub Desktop.
Save kekscom/d9eb5effe656d9d3ebf9 to your computer and use it in GitHub Desktop.
CamelCase-ize
'hallo_ballo:bla'.replace(/([^a-z0-9][a-z0-9])/ig, function($0, $1) {
return $1[1].toUpperCase();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment