Buckets:

imerfanrajabee's picture
download
raw
469 Bytes
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: BSD-3-Clause
*/
function* join(items, joiner) {
const isFunction = typeof joiner === 'function';
if (items !== undefined) {
let i = -1;
for (const value of items) {
if (i > -1) {
yield isFunction ? joiner(i) : joiner;
}
i++;
yield value;
}
}
}
export { join };
//# sourceMappingURL=join.js.map

Xet Storage Details

Size:
469 Bytes
·
Xet hash:
2fc60fddd6e08e609ba167d1a7ed44d2f125fc22692e5b405f4cd789159402fd

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