e369b4b8c46d3b7362ac37335bf6242629e4081a61b5793c832dd6e946632fd5ef53a3da40cb98b952084847f600de6ed3557fafba783797bc3fdfd9c8d7e7 349 B

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