Skip to main content
Module

x/jsonlines/mod.ts>StringifyStreamOptions

Web stream based jsonlines decoder/encoder
Latest
interface StringifyStreamOptions
import { type StringifyStreamOptions } from "https://deno.land/x/jsonlines@v1.2.2/mod.ts";

Properties

readonly
optional
separator: string

a character to separate JSON. The default is '\n'.

readonly
optional
writableStrategy: _QueuingStrategy<unknown>

Controls the buffer of the TransformStream used internally. Check https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream.

readonly
optional
readableStrategy: _QueuingStrategy<string>

Controls the buffer of the TransformStream used internally. Check https://developer.mozilla.org/en-US/docs/Web/API/TransformStream/TransformStream.