UNPKG

array-includes-polyfill

Version:

Exposing a richer set of Array features for JavaScript

11 lines (8 loc) 282 B
'use strict'; 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); };