JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour
export async function asyncIterableToArray<T>( iterator: AsyncIterable<T> ): Promise<T[]> { const items: T[] = []; for await (const item of iterator) { items.push(item); } return items; }