UNPKG

streams

Version:

A lazy streams library for functional composition in JavaScript.

9 lines (8 loc) 221 B
export {}; declare global { interface String { chars(): Generator<string, void, unknown>; charCodes(): Generator<number, void, unknown>; codePoints(): Generator<string, void, unknown>; } }