import { type Asyncable } from '../asyncerator.ts'; /** * Turn an async iterable iterator into an Array. * This will wait until the iterator is done before returning an array, so be careful using this * with endless iterators (in other words, don't do that). */ export default function (iterator: Asyncable): Promise;