e87a71a07e4259292ebc6e41a6f05814623757508d32ffb1cbb3abcc40e53c7dce2c95b73092f8d5bf4cd1a7105fc5f0e27dda0d6706854b5790bafaecd164 254 B

123456789
  1. 'use strict';
  2. var isPrototypeOf = require('../internals/object-is-prototype-of');
  3. var $TypeError = TypeError;
  4. module.exports = function (it, Prototype) {
  5. if (isPrototypeOf(Prototype, it)) return it;
  6. throw new $TypeError('Incorrect invocation');
  7. };