| Current Path : /home/emeraadmin/www/node_modules/core-js-pure/internals/ |
| Current File : /home/emeraadmin/www/node_modules/core-js-pure/internals/function-call.js |
'use strict';
var NATIVE_BIND = require('../internals/function-bind-native');
var call = Function.prototype.call;
module.exports = NATIVE_BIND ? call.bind(call) : function () {
return call.apply(call, arguments);
};