Skip to content

Instantly share code, notes, and snippets.

@umbrae
Created April 22, 2011 13:24
Show Gist options
  • Select an option

  • Save umbrae/936650 to your computer and use it in GitHub Desktop.

Select an option

Save umbrae/936650 to your computer and use it in GitHub Desktop.
Convert from Dash Case (some-string-like-this) to lowerCamelCase in Javascript
function dashCaseToLowerCamelCase(dashCaseString) {
return dashCaseString.replace(/-\w/g, function ($0) { return $0.substr(-1).toUpperCase(); });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment