UNPKG

json-nd

Version:

json-nd is a module that provides functions to parse and stringify newline-delimited JSON (NDJSON) data.

5 lines (4 loc) 115 B
export declare class NdJson { static parse<T>(data: string): T[]; static stringify(data: any[]): string; }