c6cca6ac87546015c773a2ac777382a13258bbc707209f51489eb1064f69597f2890a684f11b3c86beafd132f6dbfc90868bc264cb7eb34d7a0cd874384353 371 B

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