3bfd73bd905b63280c5e6c4d25c704e9ba59f5e0f1749d88dcfe95878ee28fa3e5a08978977f798bd0a7cf1d7a932eb58b20a27a781d485074a558e9638412 251 B

12345678
  1. 'use strict';
  2. var global = require('../internals/global');
  3. module.exports = function (CONSTRUCTOR, METHOD) {
  4. var Constructor = global[CONSTRUCTOR];
  5. var Prototype = Constructor && Constructor.prototype;
  6. return Prototype && Prototype[METHOD];
  7. };