0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/unit_node/testdata/binary_stdio.js

12 lines
266 B
JavaScript
Raw Normal View History

const buffer = new Uint8Array(10);
const nread = await Deno.stdin.read(buffer);
if (nread != 10) {
throw new Error("Too little data read");
}
const nwritten = await Deno.stdout.write(buffer);
if (nwritten != 10) {
throw new Error("Too little data written");
}