Here you can find the source of capitalizeEachLetter()
String.prototype.capitalizeEachLetter = function() { return this.toLowerCase() .split(' ') .map(function(word) { return word.capitalizeFirstLetter(); })/*from w ww . j a v a 2 s. co m*/ .join(' '); }; String.prototype.capitalizeFirstLetter = function() { return this.charAt(0) .toUpperCase() + this.slice(1); };
'use strict'; String.prototype.capitalize = function(lower) { return (lower ? this.toLowerCase() : this).replace( /(?:^|\s)\S/g, function(a) { return a.toUpperCase(); }); };
String.prototype.capitalize = function(lower) { return (lower ? this.toLowerCase() : this).replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); }); };
String.prototype.capitalize = function(n) { return this.charAt(n).toUpperCase() + this.slice(n + 1); String.prototype.format = function(n) { return this.charAt(n).toUpperCase() + this.slice(n + 1);
'use strict'; String.prototype.capitalize = function(normalise) { return (normalise ? this.toLowerCase() : this).replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); }); };
String.prototype.capitalize = function(separator) { var capitalized = ""; var split = this.split(separator||'.'); split.forEach(function(part){ capitalized += part.charAt(0).toUpperCase()+part.slice(1); }); return capitalized; };
String.prototype.capitalizeEachWord = function () { return this.replace(/\w\S*/g, function(txt) { return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); });
String.prototype.capitalizeFirst = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalizeFirst = function(){ return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase(); };
String.prototype.capitalizeFirst = function() return ( this.charAt(0).toUpperCase() + this.slice(1) ); };