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

x/msgpack_rpc/deps.ts>io.readAll

🦕 Deno module to support msgpack-rpc
Go to Latest
function io.readAll
import { io } from "https://deno.land/x/msgpack_rpc@v3.1.6/deps.ts";
const { readAll } = io;

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

import { readAll } from "./util.ts";
import { Buffer } from "./buffer.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);

Returns

Promise<Uint8Array>