c27f43acc21edf5dc9ebd0c8627af96f80c261b2b5b2b0cc1ee5ab77bcf5a3670b83e4b679f173581a27f5b837d2379a363994b7468ba7973c0bed73a33064 365 B

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