1dc309c448b64afaf3cfbb70e61af69bee22660d914c34b9a4d087acc02f3066e776ae2a986eded6f8117f8a7144dc244d6a9194dfe8c427a98b121b1a1640 364 B

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