0
0
mirror of https://github.com/Doodle3D/Doodle3D-API synced 2024-06-27 14:11:21 +02:00
Doodle3D-API/jspm_packages/npm/core-js@0.9.18/modules/es6.array.copy-within.js
2015-07-15 15:06:18 +02:00

31 lines
803 B
JavaScript

/* */
'use strict';
var $ = require("./$"),
$def = require("./$.def"),
toIndex = $.toIndex;
$def($def.P, 'Array', {copyWithin: function copyWithin(target, start) {
var O = Object($.assertDefined(this)),
len = $.toLength(O.length),
to = toIndex(target, len),
from = toIndex(start, len),
end = arguments[2],
fin = end === undefined ? len : toIndex(end, len),
count = Math.min(fin - from, len - to),
inc = 1;
if (from < to && to < from + count) {
inc = -1;
from = from + count - 1;
to = to + count - 1;
}
while (count-- > 0) {
if (from in O)
O[to] = O[from];
else
delete O[to];
to += inc;
from += inc;
}
return O;
}});
require("./$.unscope")('copyWithin');