UNPKG

asyncerator

Version:

Provide supporting types for AsyncIterable/AsyncIterableIterators, promisified stream.pipeline implementation, and Array-like utility operators, sources and sinks.

6 lines (5 loc) 177 B
import { type Asyncable } from '../asyncerator'; /** * Drop the results of an asyncable into /dev/null. */ export default function <T>(iterator: Asyncable<T>): Promise<void>;