export async function * fromArray(array: T[]) { for (const el of array) { yield el } }