massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / function-apply.js
1 var FunctionPrototype = Function.prototype;
2 var apply = FunctionPrototype.apply;
3 var bind = FunctionPrototype.bind;
4 var call = FunctionPrototype.call;
5
6 // eslint-disable-next-line es/no-reflect -- safe
7 module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bind(apply) : function () {
8   return call.apply(apply, arguments);
9 });