Remove string.contains

This commit is contained in:
Pavel Djundik 2016-03-07 17:16:34 +02:00
parent c4d628db49
commit 42ae08b6a3

View file

@ -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;
}