import { streams } from "https://deno.land/x/enviromodder@4.0.2/setup/deps.ts";
const { DelimiterStream } = streams;
Transform a stream into a stream where each chunk is divided by a given delimiter.
import { DelimiterStream } from "./delimiter.ts";
const res = await fetch("https://example.com");
const parts = res.body!
.pipeThrough(new DelimiterStream(new TextEncoder().encode("foo")))
.pipeThrough(new TextDecoderStream());