/** * Wrap the runtime-specific hook into stdin */ export async function* inputLoop() { for await (const chunk of Deno.stdin.readable) { yield chunk; } }