export type Input = AsyncIterable | Iterable; export async function *asAsync(iterable: Input): AsyncIterable { yield* iterable; }