Reading and writing of comma-separated values (CSV) files
default
Reads and writes comma-separated values (CSV) files.
The most essential aspect of a column is accessing the property holding the
data for that column on each object in the data array. If that member is at
the top level, Column can simply be a property accessor, which is either a
string (if it's a plain object) or a number (if it's an array).
Read data from a CSV-encoded stream or file. Provides an auto/custom mapper for columns.
Convert each chunk to a CSV record.
An object (plain or array)
Csv parse helper to manipulate data. Provides an auto/custom mapper for columns.
A ParseError is returned for parsing errors. Line numbers are 1-indexed and columns are 0-indexed.
Options for parse and CsvParseStream.
Array index or record key corresponding to a value for a data object.
Record type with column type.
Row return type.
Write data using CSV encoding.
Error thrown in stringify.
Read data from a CSV-encoded stream or file. Provides an auto/custom mapper for columns.
Row return type.
Convert each chunk to a CSV record.
Csv parse helper to manipulate data. Provides an auto/custom mapper for columns.
A ParseError is returned for parsing errors. Line numbers are 1-indexed and columns are 0-indexed.
Options for parse and CsvParseStream.
Record type with column type.
The most essential aspect of a column is accessing the property holding the
data for that column on each object in the data array. If that member is at
the top level, Column can simply be a property accessor, which is either a
string (if it's a plain object) or a number (if it's an array).
An object (plain or array)
Array index or record key corresponding to a value for a data object.
Write data using CSV encoding.
Error thrown in stringify.