Skip to content

Instantly share code, notes, and snippets.

@qzm
Created April 17, 2017 06:28
Show Gist options
  • Save qzm/b0a373702174c76aacee37bd4600178e to your computer and use it in GitHub Desktop.
Save qzm/b0a373702174c76aacee37bd4600178e to your computer and use it in GitHub Desktop.
Camelize a hyphen-delimited string
/**
* Camelize a hyphen-delimited string.
*/
var camelizeRE = /-(\w)/g;
var camelize = cached(function (str) {
return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment