Skip to content

Commit

Permalink
fix: remove non-existent parser options
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjoDiaz committed Feb 6, 2024
1 parent 2f1e932 commit 8321c6a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions packages/plainjs/src/BaseParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,9 @@ export interface FormattersOptions {

export interface Json2CSVBaseOptions<TRaw, T> {
fields?: Array<string | FieldInfo<T, unknown>>;
ndjson?: boolean;
defaultValue?: string;
quote?: string;
escapedQuote?: string;
delimiter?: string;
eol?: string;
excelStrings?: boolean;
header?: boolean;
includeEmptyRows?: boolean;
withBOM?: boolean;
Expand Down Expand Up @@ -102,7 +98,7 @@ export default abstract class JSON2CSVBase<
* Check passing opts and set defaults.
*
* @param {Json2CsvOptions} opts Options object containing fields,
* delimiter, default value, quote mark, header, etc.
* delimiter, default value, header, etc.
*/
protected preprocessOpts(
opts?: Json2CSVBaseOptions<TRaw, T>,
Expand Down

0 comments on commit 8321c6a

Please sign in to comment.