Remove string.contains
This commit is contained in:
parent
c4d628db49
commit
42ae08b6a3
@ -1,18 +0,0 @@
|
|||||||
//
|
|
||||||
// Check if string contains any of the supplied words.
|
|
||||||
//
|
|
||||||
// Usage:
|
|
||||||
// "".contains(a, b, ...);
|
|
||||||
//
|
|
||||||
// Returns [true|false]
|
|
||||||
//
|
|
||||||
String.prototype.contains = function() {
|
|
||||||
var args = arguments;
|
|
||||||
for (var i in args) {
|
|
||||||
var str = args[i];
|
|
||||||
if (typeof str === "string" && this.indexOf(str) > -1) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user