source: trip-planner-front/node_modules/core-js/internals/entry-unbind.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 260 bytes
Line 
1var global = require('../internals/global');
2var bind = require('../internals/function-bind-context');
3
4var call = Function.call;
5
6module.exports = function (CONSTRUCTOR, METHOD, length) {
7 return bind(call, global[CONSTRUCTOR].prototype[METHOD], length);
8};
Note: See TracBrowser for help on using the repository browser.