Skip to content

Instantly share code, notes, and snippets.

@gabrielmansour
Last active December 30, 2015 13:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielmansour/7836276 to your computer and use it in GitHub Desktop.
Save gabrielmansour/7836276 to your computer and use it in GitHub Desktop.
// Convert CamelCase to an under_scored_word
function underscore(s){
return s.replace(/(?!^)([A-Z])/g, function(m){ return '_' + m }).toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment