53ae8079b29f0907a9086ad47d7ed28183501ec72995facd2b2fca47443429044ffae85bbfe575644c39ce13dc660436d063e3926028d83c418c667a17b416 395 B

1234567891011
  1. 'use strict';
  2. // TODO: Remove from `core-js@4`
  3. var isPrototypeOf = require('../../internals/object-is-prototype-of');
  4. var method = require('../array/virtual/filter-out');
  5. var ArrayPrototype = Array.prototype;
  6. module.exports = function (it) {
  7. var own = it.filterOut;
  8. return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.filterOut) ? method : own;
  9. };