Skip to main content
Module

x/alloy_folk/deps.ts>readAllSync

An application installer for restriced macOS
Go to Latest
function readAllSync
import { readAllSync } from "https://deno.land/x/alloy_folk@v1.1.0/deps.ts";

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

import { Buffer } from "../io/buffer.ts";
import { readAllSync } from "./conversion.ts";

// Example from stdin
const stdinContent = readAllSync(Deno.stdin);

// Example from file
const file = Deno.openSync("my_file.txt", {read: true});
const myFileContent = readAllSync(file);
Deno.close(file.rid);

// Example from buffer
const myData = new Uint8Array(100);
// ... fill myData array with data
const reader = new Buffer(myData.buffer);
const bufferContent = readAllSync(reader);

Returns

Uint8Array