github-pages-deploy-action/node_modules/core-js-pure/es/instance/copy-within.js
2020-03-06 22:45:40 -05:00

9 lines
274 B
JavaScript

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;
};