UNPKG

stromjs

Version:

Dependency-free streams utils for Node.js

5 lines (4 loc) 249 B
/// <reference types="node" /> import { Transform, TransformOptions } from "stream"; import { WithEncoding } from "./baseDefinitions"; export declare function split(separator?: string | RegExp, options?: WithEncoding & TransformOptions): Transform;