cb3d10472ee841daf1faf76c8615ecc9e18e5521c4d9e34e8103745b9a1616a22d8ffa4c8b771c0895bc884acfa5dc2e957a0b0e40d9d14fb0388ae505562f 352 B

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