scroll/src/deno/terminal_io.ts

9 lines
160 B
JavaScript
Raw Normal View History

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