Buckets:
| /** | |
| * @license | |
| * Copyright 2021 Google LLC | |
| * SPDX-License-Identifier: BSD-3-Clause | |
| */ | |
| export 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; | |
| } | |
| } | |
| //# sourceMappingURL=range.js.map |
Xet Storage Details
- Size:
- 345 Bytes
- Xet hash:
- 868d663bbc198082f9ea348d227e3a41a3b150e373471783a29ea079335e78ca
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.