Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/msgpack_rpc/deps.ts>streams.DelimiterStream

🦕 Deno module to support msgpack-rpc
Latest
class streams.DelimiterStream
extends TransformStream<Uint8Array, Uint8Array>
import { streams } from "https://deno.land/x/msgpack_rpc@v4.0.0/deps.ts";
const { DelimiterStream } = streams;

Transform a stream into a stream where each chunk is divided by a given delimiter.

import { DelimiterStream } from "https://deno.land/std@0.224.0/streams/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)