import { type Asyncable } from '../asyncerator.ts'; /** * 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 function (iterator: Asyncable): Promise;