qauMaWeb/node_modules/core-js/internals/entry-unbind.js

7 lines
225 B
JavaScript
Raw Normal View History

2024-10-13 18:02:27 +08:00
var global = require('../internals/global');
var uncurryThis = require('../internals/function-uncurry-this');
module.exports = function (CONSTRUCTOR, METHOD) {
return uncurryThis(global[CONSTRUCTOR].prototype[METHOD]);
};