23c8b742ee70b537cf5ded40548a86341656e5ebb4b3f55ded7822b95ed1d4c30d31692b8e9705618739104b90f7267d16a9ec8202213173f2cc61c5413c2f 371 B

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