Skip to content

Instantly share code, notes, and snippets.

@fabiancarlos
Created August 20, 2012 21:46
Show Gist options
  • Save fabiancarlos/3408185 to your computer and use it in GitHub Desktop.
Save fabiancarlos/3408185 to your computer and use it in GitHub Desktop.
camel_case.js
function toCamelCase(str) {
return str.replace(/(?:^\w|[A-Z]|\b\w)/g, function(letter, index) {
return index == 0 ? letter.toUpperCase() : letter.toLowerCase();
}).replace(/\s+/g, ' ');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment