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

x/enviromodder/setup/deps.ts>streams.readableStreamFromReader

A package (in beta) designed to make ReMapper environment statements more friendly
Go to Latest
function streams.readableStreamFromReader
import { streams } from "https://deno.land/x/enviromodder@3.0.3/setup/deps.ts";
const { readableStreamFromReader } = streams;

Create a ReadableStream<Uint8Array> from from a Deno.Reader.

When the pull algorithm is called on the stream, a chunk from the reader will be read. When null is returned from the reader, the stream will be closed along with the reader (if it is also a Deno.Closer).

An example converting a Deno.FsFile into a readable stream:

import { readableStreamFromReader } from "./mod.ts";

const file = await Deno.open("./file.txt", { read: true });
const fileStream = readableStreamFromReader(file);