Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/deno/cli/js/deno.ts>toAsyncIterator

A modern runtime for JavaScript and TypeScript.
Go to Latest
function toAsyncIterator
import { toAsyncIterator } from "https://deno.land/x/deno@v0.30.0/cli/js/deno.ts";

Turns r into async iterator.

 for await (const chunk of toAsyncIterator(reader)) {
     console.log(chunk)
 }

Returns

AsyncIterableIterator<Uint8Array>