mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
|
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);
|
||
|
};
|