Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/enviromodder/setup/deps.ts>streams.toTransformStream

MapLock is a module for remapper which is definitely not a nootils clone :)
Go to Latest
function streams.toTransformStream
import { streams } from "https://deno.land/x/enviromodder@4.0.6/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.