Here you can find the source of capitalize()
// String inflections follow the rules of ActiveSupport::Inflector of Ruby on Rails. String.prototype.capitalize = function () { var str = this.toLowerCase(); return str.charAt(0).toUpperCase() + str.substr(1); };
String.prototype.capitalize = String.prototype.capitalize || function(){ var split = this.split(' ').filter(Boolean); var len = split.length; var capitalized_string = ''; for (var i=0;i<len;i++) { capitalized_string = capitalized_string + split[i].charAt(0).toUpperCase() + split[i].slice(1).toLowerCase() + " "; return capitalized_string.slice(0, capitalized_string.length-1);
String.prototype.capitalize = function () { return this.toLowerCase().replace(/(^|\s)([a-z])/g, function (m, p1, p2) { return p1 + p2.toUpperCase(); }); };
String.prototype.capitalize = function() { var newString = ""; for (var i = 0; i < this.length; i++) { if (i === 0 || this.charAt(i - 1) === " ") { newString += this.charAt(i).toUpperCase(); } else { newString += this.charAt(i); return newString; };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.substr(1).toLowerCase(); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function (all) { return this.split(/\s+/).map(function(word, i){ return (i === 0 || all) ? word.charAt(0).uppercase() + word.drop(1) : word }).join(' ') };
'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(); }); };