Skip to main content
Go to Latest
class DelimiterStream
extends TransformStream<Uint8Array, Uint8Array>
import { DelimiterStream } from "https://deno.land/std@0.157.0/streams/mod.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());

Constructors

new
DelimiterStream(delimiter: Uint8Array)