import { Deno } from "https://deno.land/x/deno@v0.28.0/cli/js/lib.deno_runtime.d.ts";
const { open } = Deno;
Open a file and return an instance of the File
object.
(async () => {
const file = await Deno.open("/foo/bar.txt");
})();
Parameters
optional
mode: OpenMode