Skip to content

Commit

Permalink
fix: fix missing ndjson option to CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjoDiaz committed Jan 22, 2022
1 parent 2433f88 commit 885e28b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/json2csv.js
Expand Up @@ -171,7 +171,8 @@ async function processStream(config, opts) {
eol: config.eol,
header: config.header,
includeEmptyRows: config.includeEmptyRows,
withBOM: config.withBom
withBOM: config.withBom,
ndjson: config.ndjson
};

await (config.streaming ? processStream : processInMemory)(config, opts);
Expand Down

0 comments on commit 885e28b

Please sign in to comment.