Class: PapaCSVReader
papaparse-based csv parser CSVReader
Implements
BaseReader
Implements
Constructors
constructor
• new PapaCSVReader(concatRows?
, colJoiner?
, rowJoiner?
, papaConfig?
): PapaCSVReader
Constructs a new instance of the class.
Parameters
Name | Type | Default value | Description |
---|---|---|---|
concatRows? | boolean | true | whether to concatenate all rows into one document.If set to False, a Document will be created for each row.True by default. |
colJoiner? | string | ", " | Separator to use for joining cols per row. Set to ", " by default. |
rowJoiner? | string | "\n" | Separator to use for joining each row.Only used when concat_rows=True .Set to "\n" by default. |
papaConfig? | ParseConfig <any , undefined > | undefined | - |