UNPKG

array-includes-polyfill

Version:

Exposing a richer set of Array features for JavaScript

8 lines (5 loc) 271 B
var includes = require('./polyfills/includes'); function ArrayIncludes (){} ArrayIncludes.prototype = Array.prototype; ArrayIncludes.prototype.includes = includes.prototype.includes; module.exports = (function(){ return Object.create(ArrayIncludes.prototype)});