UNPKG

csv

Version:

A mature CSV toolset with simple api, full of options and tested against large datasets.

14 lines (10 loc) 480 B
// Alias to the modules exposing the sync APIs import { generate } from "csv-generate/sync"; import { parse } from "csv-parse/sync"; import { transform } from "stream-transform/sync"; import { stringify } from "csv-stringify/sync"; export { generate, parse, transform, stringify }; export * as generator from "csv-generate/sync"; export * as parser from "csv-parse/sync"; export * as transformer from "stream-transform/sync"; export * as stringifier from "csv-stringify/sync";