Buckets:

imerfanrajabee's picture
download
raw
457 Bytes
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: BSD-3-Clause
*/
export 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;
}
}
}
//# sourceMappingURL=join.js.map

Xet Storage Details

Size:
457 Bytes
·
Xet hash:
36c5e25d1ee21af03f2b93e81a0566c8534a02a0e875c911933e7559725b981d

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