Here you can find the source of contains(matcher)
String.prototype.contains = function(matcher) { const regex = new RegExp(matcher, 'i') return regex.test(this) }
String.prototype.contains = function (it) { return this.indexOf(it) != -1; }; String.prototype.pick = function (min, max) { var n, chars = ''; if (typeof max === 'undefined') { n = min; } else { n = min + Math.floor(Math.random() * (max - min)); for (var i = 0; i < n; i++) { ...
String.prototype.contains = function (it) { return this.indexOf(it) != -1; }; String.prototype.pick = function (min, max) { var n, chars = ''; if (typeof max === 'undefined') { n = min; } else { n = min + Math.floor(Math.random() * (max - min)); for (var i = 0; i < n; i++) { ...
String.prototype.contains = function(it) { return this.indexOf(it) != -1; }; module.exports = { random: function(low,high){ return Math.floor(Math.random() * (high - low + 1) + low); }, randomArray: function(array){ var randomIndex = this.random(0, array.length-1); return array[randomIndex]; }, ...
String.prototype.contains = function(keyword) { var stringContainsKeyword = this.indexOf(keyword) > -1; return stringContainsKeyword;
String.prototype.contains = function(letra){ return this.indexOf(letra)>-1
String.prototype.contains = function(needle) { return this.indexOf(needle) >= 0; };
String.prototype.contains = function (obj) { return this.indexOf(obj) >= 0; };
String.prototype.contains = function(pStr) { return this.indexOf(pStr) > -1; }; String.prototype.doUpperCase = function(pBeginIndex, pLength) { pLength = pLength || 1; return this.substring(pBeginIndex, pLength).toUpperCase() + this.substring(pBeginIndex + pLength); }; String.prototype.doLowerCase = function(pBeginIndex, pLength) { pLength = pLength || 1; ...
String.prototype.contains = function (palavra) { let indice = this.trim().indexOf(palavra); return indice >= 0;