26 lines
705 B
Plaintext
26 lines
705 B
Plaintext
'use strict';
|
|
|
|
var define = require('define-properties');
|
|
var RequireObjectCoercible = require('es-abstract/2022/RequireObjectCoercible');
|
|
var callBound = require('call-bind/callBound');
|
|
|
|
var implementation = require('./implementation');
|
|
var getPolyfill = require('./polyfill');
|
|
var polyfill = getPolyfill();
|
|
var shim = require('./shim');
|
|
|
|
var $slice = callBound('Array.prototype.slice');
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
var boundMapShim = function map(array, callbackfn) {
|
|
RequireObjectCoercible(array);
|
|
return polyfill.apply(array, $slice(arguments, 1));
|
|
};
|
|
define(boundMapShim, {
|
|
getPolyfill: getPolyfill,
|
|
implementation: implementation,
|
|
shim: shim
|
|
});
|
|
|
|
module.exports = boundMapShim;
|