debian-mirror-gitlab/core-js/es/instance/copy-within.js

9 lines
274 B
JavaScript
Raw Normal View History

2019-09-25 13:30:05 +05:30
var copyWithin = require('../array/virtual/copy-within');
var ArrayPrototype = Array.prototype;
module.exports = function (it) {
var own = it.copyWithin;
return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.copyWithin) ? copyWithin : own;
};