Skip to content

Instantly share code, notes, and snippets.

@jbnv
Created June 22, 2015 15:05
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 jbnv/cf70333972b30ec40418 to your computer and use it in GitHub Desktop.
Save jbnv/cf70333972b30ec40418 to your computer and use it in GitHub Desktop.
camelize() function in JavaScript
camelize = function (str) {
return str.replace(/[\-_](\w)/g, function (match) {
return match.charAt(1).toUpperCase();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment