Skip to main content
Module

x/clippy/deps.ts>streams.readerFromIterable

cross-platform Deno library for writing and reading clipboard.
Go to Latest
function streams.readerFromIterable
import { streams } from "https://deno.land/x/clippy@v0.2.0/deps.ts";
const { readerFromIterable } = streams;

Create a Deno.Reader from an iterable of Uint8Arrays.

     import { readerFromIterable, copy } from "./conversion.ts";

     const file = await Deno.open("metrics.txt", { write: true });
     const reader = readerFromIterable((async function* () {
       while (true) {
         await new Promise((r) => setTimeout(r, 1000));
         const message = `data: ${JSON.stringify(Deno.metrics())}\n\n`;
         yield new TextEncoder().encode(message);
       }
     })());
     await copy(reader, file);

Parameters

iterable: Iterable<Uint8Array> | AsyncIterable<Uint8Array>