Here you can find the source of endsWith(s, i)
/**//from ww w .j av a2 s . c om * Custom stuff that may get factored out.. */ String.prototype.endsWith = function(s, i) { if(i) { return s.toLowerCase() == this.substring(this.length - s.length).toLowerCase() } return s == this.substring(this.length - s.length) };
String.prototype.endsWith = function(prefix){ return this.substr(this.length - prefix.length) === prefix; };
String.prototype.endsWith = function(s) { return this.length >= s.length && this.substr(this.length - s.length) == s;
String.prototype.endsWith = function(s){ return this.indexOf(s) == this.length - s.length; };
String.prototype.endsWith = function(s){ var d = this.length - s.length; return d >= 0 && this.lastIndexOf(s) === d;
String.prototype.endsWith=function(s) return this.substring(this.length-s.length)==s; };
String.prototype.endsWith = function(searchString) { var result = true; var subjectString = this.toString(); for(var i=1;i<=searchString.length;i++){ var lastcharsubjectString = subjectString.charAt(subjectString.length-i); var lastcharsearchString =searchString.charAt(searchString.length-i); if(lastcharsubjectString != lastcharsearchString){ result = false; break; ...
if (!String.prototype.endsWith) { String.prototype.endsWith = function(searchString, position) { var subjectString = this.toString(); if (position === undefined || position > subjectString.length) { position = subjectString.length; position -= searchString.length; var lastIndex = subjectString.indexOf(searchString, position); return lastIndex !== -1 && lastIndex === position; ...
String.prototype.endsWith = function(searchString, position) { var subjectString = this.toString(); if (position === undefined || position > subjectString.length) { position = subjectString.length; position -= searchString.length; var lastIndex = subjectString.indexOf(searchString, position); return lastIndex !== -1 && lastIndex === position; }; ...
String.prototype.endsWith = function(searchString, position) { var subjectString = this.toString(); if (position === undefined || position > subjectString.length) { position = subjectString.length; position -= searchString.length; var lastIndex = subjectString.indexOf(searchString, position); return lastIndex !== -1 && lastIndex === position; }; ...