Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/denoexec/deps.ts>streams.readAll

A higher level wrapper around https://doc.deno.land/builtin/stable#Deno.run
Latest
function streams.readAll
import { streams } from "https://deno.land/x/denoexec@v1.1.5/deps.ts";
const { readAll } = streams;

Read Reader r until EOF (null) and resolve to the content as Uint8Array`.

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

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

// Example from file
const file = await Deno.open("my_file.txt", {read: true});
const myFileContent = await readAll(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 = await readAll(reader);

Parameters

r: Deno.Reader

Returns

Promise<Uint8Array>