import { DelimiterStream } from "https://deno.land/x/frugal@0.3.0/dep/std/streams.ts";
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());