Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/lib/mod.ts>stdx.streams.readAllSync

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
variable stdx.streams.readAllSync
Deprecated
Deprecated

(will be removed after 0.169.0) Import from std/streams/read_all.ts instead.

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

import { Buffer } from "https://deno.land/std@0.224.0/io/buffer.ts";
import { readAllSync } from "https://deno.land/std@0.224.0/streams/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);
file.close();

// Example from buffer
const myData = new Uint8Array(100);
// ... fill myData array with data
const reader = new Buffer(myData.buffer);
const bufferContent = readAllSync(reader);
import { stdx } from "https://deno.land/x/hex@0.6.5/src/lib/mod.ts";
const { readAllSync } = stdx.streams;