Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
function readerFromStreamReader
Deprecated
Deprecated

(will be removed in 1.0.0) Import from https://deno.land/std/io/reader_from_stream_reader.ts instead.

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

Examples

Example 1

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

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

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

Parameters

streamReader: ReadableStreamDefaultReader<Uint8Array>