astro-ghostcms/.pnpm-store/v3/files/65/a338cfc22d566b3535ec0420149...

27 lines
734 B
Plaintext

'use strict';
var define = require('define-properties');
var RequireObjectCoercible = require('es-abstract/2023/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-next-line no-unused-vars
var bound = function filter(array, callbackfn) {
RequireObjectCoercible(array);
return polyfill(array, $slice(arguments, 1));
};
define(bound, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = bound;