Here you can find the source of capitalize()
String.prototype.capitalize = function(){ return this.replace(/\w+/g, function(a){ return a.charAt(0).toUpperCase() + a.slice(1).toLowerCase(); });/* www .j a v a2s . c om*/ };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); }; if(typeof String.prototype.trim !== 'function') { String.prototype.trim = function() { return this.replace(/^\s+|\s+$/, '');
"use strict"; String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); }; module.exports = function(pageName) { return { title: pageName.capitalize(), url: pageName, id: pageName, ...
String.prototype.capitalize = function(){ var sa = this.replace(/-/g,' '); var saa = sa.toLowerCase(); var sb = saa.replace( /(^|\s)([a-z])/g , function(m,p1,p2){ return p1+p2.toUpperCase(); } ); var sc = sb.replace(/\s+/g, '-'); return sc; };
'use strict' String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1);
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.substring(1); };
String.prototype.capitalize = function(){ return this.charAt(0).toUpperCase() + this.slice(1);
String.prototype.capitalize = function() { return this.trim() .split(' ') .map(word => { return word.replace(/^[a-z]/g, word.charAt(0).toUpperCase()) }) .join(' ')
function decodeEntities(s){ var str, temp= document.createElement('p'); temp.innerHTML= s; str= temp.textContent || temp.innerText; temp=null; return str; String.prototype.capitalize = function() { return this.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); }); ...
String.prototype.capitalize = function() { return this[0].toUpperCase() + this.substr(1, this.length-1); };