UNPKG

cspell-lib

Version:

A library of useful functions used across various cspell tools.

9 lines 212 B
export function* toIterableIterator(i) { yield* i; } export function* concatIterables(...iterables) { for (const i of iterables) { yield* i; } } //# sourceMappingURL=iterableIteratorLib.js.map