UNPKG

batch-iterable

Version:

An abstraction to work with iterables of asyncIterables

10 lines (9 loc) 238 B
/** * @template T * @param {AsyncIterable<Iterable<T>>} iterable * @returns {Promise<Array<T>>} */ export default function toArray<T>( iterable: AsyncIterable<Iterable<T>>, ): Promise<Array<T>> //# sourceMappingURL=toArray.d.ts.map