Packages
A spellchecker for Elixir, made with Bun and cspell
Current section
Files
Jump to
Current section
Files
priv/bun/node_modules/cspell-lib/dist/lib/util/iterableIteratorLib.js
export function* toIterableIterator(i) {
yield* i;
}
export function* concatIterables(...iterables) {
for (const i of iterables) {
yield* i;
}
}
//# sourceMappingURL=iterableIteratorLib.js.map