Skip to content

Instantly share code, notes, and snippets.

@fschell
Created March 4, 2014 09:54
Show Gist options
  • Save fschell/9343479 to your computer and use it in GitHub Desktop.
Save fschell/9343479 to your computer and use it in GitHub Desktop.
capitalize.js
// capitalize string
String.prototype.cap = function(){
return this.replace( /(^|\s)([a-z])/g , function(m,p1,p2){return p1+p2.toUpperCase();});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment