qauMaWeb/node_modules/core-js/es/instance/copy-within.js

10 lines
351 B
JavaScript
Raw Normal View History

2024-10-13 18:02:27 +08:00
var isPrototypeOf = require('../../internals/object-is-prototype-of');
var method = require('../array/virtual/copy-within');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.copyWithin;
return it === ArrayPrototype || (isPrototypeOf(ArrayPrototype, it) && own === ArrayPrototype.copyWithin) ? method : own;
};