asyncerator
Version:
Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.
23 lines (19 loc) • 616 B
text/typescript
// sink/to-string.ts
/*
* Copyright (c) 2021-2024 Check Digit, LLC
*
* This code is licensed under the MIT license (see LICENSE.txt for details).
*/
import asyncerator, { type Asyncable } from '../asyncerator';
/**
* Turn an async iterable iterator into a string.
* This will wait until the iterator is done before returning, so be careful using this
* with endless iterators (in other words, don't do that).
*/
export default async function <T>(iterator: Asyncable<T>): Promise<string> {
let result = '';
for await (const chunk of asyncerator(iterator)) {
result += chunk;
}
return result;
}