You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
657 B
25 lines
657 B
'use strict'; |
|
|
|
var define = require('define-properties'); |
|
var ES = require('es-abstract/es6'); |
|
|
|
var implementation = require('./implementation'); |
|
var getPolyfill = require('./polyfill'); |
|
var polyfill = getPolyfill(); |
|
var shim = require('./shim'); |
|
|
|
var slice = Array.prototype.slice; |
|
|
|
/* eslint-disable no-unused-vars */ |
|
var boundIncludesShim = function includes(array, searchElement) { |
|
/* eslint-enable no-unused-vars */ |
|
ES.RequireObjectCoercible(array); |
|
return polyfill.apply(array, slice.call(arguments, 1)); |
|
}; |
|
define(boundIncludesShim, { |
|
getPolyfill: getPolyfill, |
|
implementation: implementation, |
|
shim: shim |
|
}); |
|
|
|
module.exports = boundIncludesShim;
|
|
|