Skip to content

Instantly share code, notes, and snippets.

@clarketm
Created August 18, 2017 02:30
Show Gist options
  • Save clarketm/6ba915e988adc7f1df2b0bf75dce8e95 to your computer and use it in GitHub Desktop.
Save clarketm/6ba915e988adc7f1df2b0bf75dce8e95 to your computer and use it in GitHub Desktop.
String.prototype.toTitleCase
String.prototype.toTitleCase = function () {
return this[0].toUpperCase() + this.substring(1).toLowerCase();
};
module.exports = String;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment