mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-06 19:15:12 +02:00
8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
'use strict';
|
|
var global = require('../internals/global');
|
|
var uncurryThis = require('../internals/function-uncurry-this');
|
|
|
|
module.exports = function (CONSTRUCTOR, METHOD) {
|
|
return uncurryThis(global[CONSTRUCTOR].prototype[METHOD]);
|
|
};
|