aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/stdin-repro.js
blob: 05daf06374ec38e474f8d31275a7dbe98a47d877 (plain) (blame)
1
2
3
4
5
while (true) {
  for await (let chunk of Bun.stdin.stream()) {
    console.log(new Buffer(chunk).toString());
  }
}