UNPKG

190 BJavaScriptView Raw
1Object.defineProperty(Array.prototype, "includes", {
2 value: function(entry) {
3 return this.indexOf(entry) !== -1;
4 },
5 enumerable: false,
6 configurable: false,
7 writable: false
8});