0753e641746424251e11425f1148700e2dfd710558e2fe1abdfc7725a35983cde0da322f4755d3e13f4f5da0eb43b772fd90479fb50be3f848b347dee0f18a 385 B

12345678910
  1. 'use strict';
  2. var isPrototypeOf = require('../../internals/object-is-prototype-of');
  3. var method = require('../function/virtual/demethodize');
  4. var FunctionPrototype = Function.prototype;
  5. module.exports = function (it) {
  6. var own = it.demethodize;
  7. return it === FunctionPrototype || (isPrototypeOf(FunctionPrototype, it) && own === FunctionPrototype.demethodize) ? method : own;
  8. };