UNPKG

boilerplate.js

Version:

Development Tools

3 lines 106 B
String.prototype.toTitleCase = function () { return this.charAt(0).toUpperCase() + this.slice(1); };