8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
/**
|
|
* Wrap the runtime-specific hook into stdin
|
|
*/
|
|
export async function* inputLoop() {
|
|
for await (const chunk of Bun.stdin.stream()) {
|
|
yield chunk;
|
|
}
|
|
} |