import { readAllSync } from "https://deno.land/std@0.220.0/io/read_all.ts";
Synchronously reads ReaderSync
r
until EOF (null
) and returns
the content as Uint8Array
.
Examples
Example 1
Example 1
import { readAllSync } from "https://deno.land/std@0.220.0/io/read_all.ts";
// Example from stdin
const stdinContent = readAllSync(Deno.stdin);
// Example from file
using file = Deno.openSync("my_file.txt", {read: true});
const myFileContent = readAllSync(file);
Parameters
reader: ReaderSync