in devel/psql/psql.js [98:101]
for await (const chunk of Bun.stdin.stream()) {
// chunk is Uint8Array - this converts it to text (assumes ASCII encoding)
sql += Buffer.from(chunk).toString();
}