Files
est-frame/node_modules/core-js/es/instance/copy-within.js
2025-10-22 05:38:27 +00:00

11 lines
365 B
JavaScript
Executable File

'use strict';
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;
};