import { writeSync } from "https://deno.land/x/deno@v0.28.0/cli/js/files.ts";
Write synchronously to the file ID the contents of the array buffer.
Resolves with the number of bytes written.
const encoder = new TextEncoder();
const data = encoder.encode("Hello world\n");
const file = Deno.openSync("/foo/bar.txt");
Deno.writeSync(file.rid, data);