Skip to main content
The Deno 2 Release Candidate is here
Learn more
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function readerFromStreamReader
Deprecated
Deprecated

(will be removed after 1.0.0) Use ReadableStreamDefaultReader directly.

import { readerFromStreamReader } from "https://deno.land/std@0.212.0/streams/reader_from_stream_reader.ts";

Examples

Example 1

import { copy } from "https://deno.land/std@0.212.0/streams/copy.ts";
import { readerFromStreamReader } from "https://deno.land/std@0.212.0/streams/reader_from_stream_reader.ts";

const res = await fetch("https://deno.land");
const file = await Deno.open("./deno.land.html", { create: true, write: true });

const reader = readerFromStreamReader(res.body!.getReader());
await copy(reader, file);
file.close();

Parameters

streamReader: ReadableStreamDefaultReader<Uint8Array>