Skip to content

Instantly share code, notes, and snippets.

@psahni
Last active August 29, 2015 14:09
Show Gist options
  • Save psahni/355683bde15a14f8af7d to your computer and use it in GitHub Desktop.
Save psahni/355683bde15a14f8af7d to your computer and use it in GitHub Desktop.
StringPrototypes
//------------------------------------------------------------------------------------
String.prototype.capitalize_with_space = function(){
return this.replace(/([A-Z])/g, ' $1')
.replace(/^./, function(str){ return str.toUpperCase(); })
}
// Example: "userScope".capitalize_with_space() => User Scope
//------------------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment