Skip to main content
Module

std/node/stream.ts>Readable.fromWeb

Deno standard library
Go to Latest
method Readable.fromWeb
Re-export
import { Readable } from "https://deno.land/std@0.158.0/node/stream.ts";

A utility method for creating Readable from a ReadableStream.

Parameters

readableStream: globalThis.ReadableStream
optional
options: Pick<ReadableOptions,
| "encoding"
| "highWaterMark"
| "objectMode"
| "signal"
>