76c4cf632963514314feff15f5f6d2180fab574ffeff8337bf9a4c34b7c1556dff91c03492adc6515e1701c77908059a1e7067ff306361a32584d9a45ba527 354 B

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