Skip to content

Instantly share code, notes, and snippets.

@iolo
Created November 25, 2016 09:35
Show Gist options
  • Save iolo/e31b42c8fbe66766652590243b87b840 to your computer and use it in GitHub Desktop.
Save iolo/e31b42c8fbe66766652590243b87b840 to your computer and use it in GitHub Desktop.
convert snake case(underscore or dash separated) string into camel case
var SNAKE_CASE_REGEXP = /[_-]([a-z])/g;
function toCamelCase(str) {
return String(str)
.replace(SNAKECASE_REGEXP, function (match, match1) {
return match1.toUpperCase();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment