2022-01-21 08:28:41 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var toPosInt = require("../number/to-pos-integer")
|
|
|
|
, value = require("../object/valid-value")
|
|
|
|
, slice = Array.prototype.slice;
|
|
|
|
|
2022-03-14 15:40:45 +00:00
|
|
|
module.exports = function (length /*, …fill*/) {
|
2022-01-21 08:28:41 +00:00
|
|
|
var arr, currentLength;
|
|
|
|
length = toPosInt(value(length));
|
|
|
|
if (length === 0) return [];
|
|
|
|
|
|
|
|
arr = arguments.length < 2 ? [undefined] : slice.call(arguments, 1, 1 + length);
|
|
|
|
|
|
|
|
while ((currentLength = arr.length) < length) {
|
|
|
|
arr = arr.concat(arr.slice(0, length - currentLength));
|
|
|
|
}
|
|
|
|
return arr;
|
|
|
|
};
|