Here you can find the source of contains(str)
String.prototype.contains = function (str) { return this.indexOf(str) > -1; }; String.prototype.startsWith = function (str) { return this.indexOf(str) == 0; }; String.prototype.endsWith = function (str) { return this.indexOf(str) > -1 && (this.indexOf(str) + str.length) == this.length; }; String.prototype.padLeft = function (length, char) { if (char === void 0) { char = null; } return Array(length - String(this).length + 1).join(char || '0') + this; }; String.prototype.padRight = function (length, char) { if (char === void 0) { char = null; } return this + Array(length - String(this).length + 1).join(char || '0'); }; String.prototype.wrap = function (start, end) { return this ? start + this + end : this; }; //# sourceMappingURL=StringExtensions.js.map
String.prototype.contains = function(str) { return this.indexOf(str) !== -1; };
String.prototype.contains = function(str) { if (typeof str !== 'string') return false; return this.indexOf(str) !== -1; };
String.prototype.contains = function(str) { return this.toLowerCase().indexOf(str.toLowerCase()) > -1; };
String.prototype.contains = function(str) return this.indexOf(str) != -1; };
String.prototype.contains = function(str){ var filters = str.toLowerCase().split(/[ ,_\-]+/); var tokens = this.toLowerCase().split(/[ ,\-]+/); for (var i = 0; i < filters.length; i++) { var match = false; for (var j = 0; j < tokens.length; j++) { if (tokens[j].startsWith(filters[i])) { match = true; break; ...
String.prototype.contains = function(str) { return this.indexOf(str) > -1; }; String.prototype.endsWith = function(suffix) { return this.indexOf(suffix, this.length - suffix.length) !== -1; };
String.prototype.contains = function(str, ignoreCase) { return (ignoreCase ? this.toUpperCase() : this) .indexOf(ignoreCase ? str.toUpperCase() : str) >= 0; }; String.prototype.startsWith = function(str) { return this.indexOf(str) == 0; };
String.prototype.contains = function(str, index) { return (this.indexOf(str, index) !== -1) ? true : false;
String.prototype.contains = function(str,startIndex) { return -1 !== String.prototype.indexOf.call(this,str,startIndex); };