1b8c02a0e8af3f0b08ccd7e7ce23c260f7f17c24498eb4b300a07255a60fcf8db333c31172e8c8f06bf59af71c6f2fe7dc67c13841b612f887a703da2cfc5b 346 B

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