This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/core-js/internals/entry-unbind.js

9 lines
260 B
JavaScript
Raw Normal View History

var global = require('../internals/global');
var bind = require('../internals/function-bind-context');
var call = Function.call;
module.exports = function (CONSTRUCTOR, METHOD, length) {
return bind(call, global[CONSTRUCTOR].prototype[METHOD], length);
};