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
Go to Latest
class streams.DelimiterStream
extends TransformStream<Uint8Array, Uint8Array>
import { streams } from "https://deno.land/x/msgpack_rpc@v4.0.1/deps.ts";
const { DelimiterStream } = streams;

Divide a stream into chunks delimited by a given byte sequence.

Examples

Divide a CSV stream by commas, discarding the commas:

import { DelimiterStream } from "https://deno.land/std@0.224.0/streams/delimiter_stream.ts";
const res = await fetch("https://example.com/data.csv");
const parts = res.body!
  .pipeThrough(new DelimiterStream(new TextEncoder().encode(",")))
  .pipeThrough(new TextDecoderStream());

Divide a stream after semi-colons, keeping the semi-colons in the output:

import { DelimiterStream } from "https://deno.land/std@0.224.0/streams/delimiter_stream.ts";
const res = await fetch("https://example.com/file.js");
const parts = res.body!
  .pipeThrough(
    new DelimiterStream(
      new TextEncoder().encode(";"),
      { disposition: "suffix" },
    )
  )
  .pipeThrough(new TextDecoderStream());

Constructors

new
DelimiterStream(delimiter: Uint8Array, options?: DelimiterStreamOptions)