deno.land / std@0.166.0 / node / testdata / binary_stdio.js

binary_stdio.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
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");}
std

Version Info

Tagged at
a year ago