UNPKG

boilerplate.js

Version:

Development Tools

8 lines 218 B
Array.prototype.contains = function (string) { string = string.toLowerCase(); let found = false; this.forEach(key => { if (string.indexOf(key) >= 0) found = true; }); return found; };