csv
Version:
A mature CSV toolset with simple api, full of options and tested against large datasets.
14 lines (10 loc) • 455 B
text/typescript
// Alias to the modules exposing the stream and callback APIs
import { generate } from "csv-generate";
import { parse } from "csv-parse";
import { transform } from "stream-transform";
import { stringify } from "csv-stringify";
export { generate, parse, transform, stringify };
export * as generator from "csv-generate";
export * as parser from "csv-parse";
export * as transformer from "stream-transform";
export * as stringifier from "csv-stringify";