Buckets:

imerfanrajabee's picture
download
raw
358 Bytes
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: BSD-3-Clause
*/
function* range(startOrEnd, end, step = 1) {
const start = end === undefined ? 0 : startOrEnd;
end ??= startOrEnd;
for (let i = start; step > 0 ? i < end : end < i; i += step) {
yield i;
}
}
export { range };
//# sourceMappingURL=range.js.map

Xet Storage Details

Size:
358 Bytes
·
Xet hash:
c5aef9f53a39105d9b395f2a69b75373dfa7a4f558b08fa3b8ac956da6c24b1f

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