6e46b66219fd38dd0d1461cadbf556d2c41d60a6f5c6908a8cb52aa4988ec2bcbc2264c2a41de212fa1923e36941387dd11dd55ee9df1b9178cc3ea00f7a41 349 B

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