UNPKG

text-stream-search

Version:

Searches for occurrences of a given search term in Node.js text streams

9 lines (8 loc) 256 B
/** * TextAccumulator collects bits and pieces of textual content * received as a sequence of buffers. */ export declare class TextAccumulator extends Array<string> { /** ToString returns the currently accumulated text. */ toString(): string; }