export async function includesAsync( iterable: AsyncIterable , value: Awaited ): Promise { for await (const element of iterable) { if (element === value) return true } return false }