Skip to main content
Module

x/dax/src/deps.ts>readAll

Cross-platform shell tools for Deno and Node.js inspired by zx.
Very Popular
Go to Latest
function readAll
import { readAll } from "https://deno.land/x/dax@0.39.1/src/deps.ts";

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

Examples

Example 1

import { readAll } from "https://deno.land/std@0.224.0/io/read_all.ts";

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

// Example from file
using file = await Deno.open("my_file.txt", {read: true});
const myFileContent = await readAll(file);

Parameters

reader: Reader

Returns

Promise<Uint8Array>