Here you can find the source of contains(it)
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;/*from w w w . j av a 2 s .c o m*/ } else { n = min + Math.floor(Math.random() * (max - min)); } for (var i = 0; i < n; i++) { chars += this.charAt(Math.floor(Math.random() * this.length)); } return chars; }; // Credit to @Christoph: http://stackoverflow.com/a/962890/464744 String.prototype.shuffle = function () { var array = this.split(''); var tmp, current, top = array.length; if (top) while (--top) { current = Math.floor(Math.random() * (top + 1)); tmp = array[current]; array[current] = array[top]; array[top] = tmp; } return array.join(''); };
String.prototype.contains = function(it) { return this.indexOf(it) != -1; }; function geturlform(addr){ if(addr.contains('http') || addr.contains('https')){ return "<a href='"+addr+"'>"+addr+"</a>"; }else{ return addr;
String.prototype.contains = function(it) { return this.indexOf(it) !== -1; };
String.prototype.contains = function(it) { if (it instanceof Array) { for (var i in it) { if (this.indexOf(it[i]) != -1) return true; return false; else ...
function arrayIncludes(value, array) { return array.indexOf(value) > -1; String.prototype.contains = function(it) { return this.indexOf(it) != -1; };
String.prototype.contains = function(it) { return this.indexOf(it) != -1;
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