mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +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);
|
|
};
|