stream-chain
Version:
Chain functions, generators, Node streams, and Web streams into a pipeline with backpressure support.
11 lines (7 loc) • 326 B
JavaScript
// @ts-self-types="./index.d.ts"
// Curated barrel for the Web-flavored JSONL entry points: the two bundled
// factories under their canonical names. Browser-safe — both entries avoid
// `node:stream`.
import jsonlParser from './parser.js';
import jsonlStringer from './stringer.js';
export {jsonlParser, jsonlStringer};