projecte_ionic/node_modules/core-js/internals/entry-unbind.js
2022-02-09 18:30:03 +01:00

9 lines
260 B
JavaScript
Executable file

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);
};