get-method.js 214 B

1234567
  1. var aFunction = require('../internals/a-function');
  2. // `GetMethod` abstract operation
  3. // https://tc39.es/ecma262/#sec-getmethod
  4. module.exports = function (fn) {
  5. return fn == null ? undefined : aFunction(fn);
  6. };