projecte_ionic/node_modules/core-js-pure/internals/function-apply.js
2022-02-09 18:30:03 +01:00

10 lines
350 B
JavaScript
Executable file

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