Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/io/mod.ts>MultiReader

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
class MultiReader
implements Reader
Deprecated
Deprecated

(will be removed after 1.0.0) Use the Web Streams API instead.

import { MultiReader } from "https://deno.land/std@0.222.1/io/mod.ts";

Reader utility for combining multiple readers

Constructors

new
MultiReader(readers: Reader[])

Methods

read(p: Uint8Array): Promise<number | null>