Skip to content

Instantly share code, notes, and snippets.

@wholypantalones
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save wholypantalones/8811838 to your computer and use it in GitHub Desktop.
Save wholypantalones/8811838 to your computer and use it in GitHub Desktop.
ALL_CAPS_KILLER.js
function toTitleCase(str) {
return str.replace(/_/g, " ").replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment