asd/asd-wx/node_modules/core-js/internals/function-apply.js
愉快的大福 340a467ba1 init
2024-11-21 11:32:11 +08:00

11 lines
389 B
JavaScript

var NATIVE_BIND = require('../internals/function-bind-native');
var FunctionPrototype = Function.prototype;
var apply = FunctionPrototype.apply;
var call = FunctionPrototype.call;
// eslint-disable-next-line es-x/no-reflect -- safe
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
return call.apply(apply, arguments);
});