deno_cli_lib_windmill 0.104.0

Deno cli lib for the needs of windmill
1
2
3
4
5
6
7
8
9
10
11
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");
}