import { streams } from "https://deno.land/x/enviromodder@4.0.1/setup/deps.ts";
const { toTransformStream } = streams;
Convert the generator function into a TransformStream.
import { readableStreamFromIterable, toTransformStream } from "./conversion.ts";
const readable = readableStreamFromIterable([0, 1, 2])
.pipeThrough(toTransformStream(async function* (src) {
for await (const chunk of src) {
yield chunk * 100;
}
}));
for await (const chunk of readable) {
console.log(chunk);
}
// output: 0, 100, 200
Parameters
transformer: (src: ReadableStream<I>) => Iterable<O> | AsyncIterable<O>
A function to transform.
optional
writableStrategy: QueuingStrategy<I>An object that optionally defines a queuing strategy for the stream.
optional
readableStrategy: QueuingStrategy<O>An object that optionally defines a queuing strategy for the stream.