source: imaps-frontend/node_modules/core-js/internals/function-apply.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 432 bytes
Line 
1'use strict';
2var NATIVE_BIND = require('../internals/function-bind-native');
3
4var FunctionPrototype = Function.prototype;
5var apply = FunctionPrototype.apply;
6var call = FunctionPrototype.call;
7
8// eslint-disable-next-line es/no-function-prototype-bind, es/no-reflect -- safe
9module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
10 return call.apply(apply, arguments);
11});
Note: See TracBrowser for help on using the repository browser.