ktongue's picture
download
raw
350 Bytes
export default function range(start, stop, step) {
start = +start, stop = +stop, step = (n = arguments.length) < 2 ? (stop = start, start = 0, 1) : n < 3 ? 1 : +step;
var i = -1,
n = Math.max(0, Math.ceil((stop - start) / step)) | 0,
range = new Array(n);
while (++i < n) {
range[i] = start + i * step;
}
return range;
}

Xet Storage Details

Size:
350 Bytes
·
Xet hash:
f34295c84849f796fdcae89ede8f845effe8e65adff42f6ac1d1b085c4f4d0b2

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.