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.
27 lines
779 B
27 lines
779 B
'use strict'; |
|
|
|
var define = require('define-properties'); |
|
var RequireObjectCoercible = require('es-abstract/2021/RequireObjectCoercible'); |
|
var callBind = require('call-bind'); |
|
var callBound = require('call-bind/callBound'); |
|
|
|
var implementation = require('./implementation'); |
|
var getPolyfill = require('./polyfill'); |
|
var polyfill = callBind.apply(getPolyfill()); |
|
var shim = require('./shim'); |
|
|
|
var $slice = callBound('Array.prototype.slice'); |
|
|
|
/* eslint-disable no-unused-vars */ |
|
var boundShim = function includes(array, searchElement) { |
|
/* eslint-enable no-unused-vars */ |
|
RequireObjectCoercible(array); |
|
return polyfill(array, $slice(arguments, 1)); |
|
}; |
|
define(boundShim, { |
|
getPolyfill: getPolyfill, |
|
implementation: implementation, |
|
shim: shim |
|
}); |
|
|
|
module.exports = boundShim;
|
|
|