Here you can find the source of capitalize()
/*/* w w w . j ava 2 s. c o m*/ Capitalize the first letter of words */ String.prototype.capitalize = function () { 'use strict'; return this.replace(/(?:^|\s)\S/g, function (a) { return a.toUpperCase(); }); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1);
String.prototype.capitalize = function() { return this[0].toUpperCase() + this.substr(1); };
String.prototype.capitalize = function() { return this.split(" ").map(function (word) { return word.charAt(0).toUpperCase() + word.slice(1); }).join(" "); };
var currentTask; var dictionary = {}; var validWordArray = new Array(); String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); }; $('body').on('shown.bs.modal', '.modal', function() { $('input:visible:first', this).focus(); });
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function(){ return this.replace(/\S+/g, function(a){ return a.charAt(0).toUpperCase() + a.slice(1).toLowerCase(); }); };
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, ...