Skip to main content
Module

std/io/mod.ts>readAllSync

Deno standard library
Go to Latest
function readAllSync
import { readAllSync } from "https://deno.land/std@0.221.0/io/mod.ts";

Synchronously reads ReaderSync r until EOF (null) and returns the content as Uint8Array.

Examples

Example 1

import { readAllSync } from "https://deno.land/std@0.221.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);

Returns

Uint8Array