Skip to content

Commit eedb37c

Browse files
authored
Merge pull request #149 from nbelakovski/master
Updating documentation
2 parents 2007658 + e4b6505 commit eedb37c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

bin/options.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"type": "boolean"
1818
},
1919
"--checkType": {
20-
"desc": "This parameter turns on and off whether check field type. default is true.",
20+
"desc": "This parameter turns on and off whether check field type. default is false.",
2121
"type": "boolean"
2222

2323
},

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ Following parameters are supported:
259259
* **delimiter**: delimiter used for seperating columns. Use "auto" if delimiter is unknown in advance, in this case, delimiter will be auto-detected (by best attempt). Use an array to give a list of potential delimiters e.g. [",","|","$"]. default: ","
260260
* **quote**: If a column contains delimiter, it is able to use quote character to surround the column content. e.g. "hello, world" wont be split into two columns while parsing. Set to "off" will ignore all quotes. default: " (double quote)
261261
* **trim**: Indicate if parser trim off spaces surrounding column content. e.g. " content " will be trimmed to "content". Default: true
262-
* **checkType**: This parameter turns on and off whether check field type. default is true.
262+
* **checkType**: This parameter turns on and off whether check field type. default is false.
263263
* **toArrayString**: Stringify the stream output to JSON array. This is useful when pipe output to a file which expects stringified JSON array. default is false and only stringified JSON (without []) will be pushed to downstream.
264264
* **ignoreEmpty**: Ignore the empty value in CSV columns. If a column value is not giving, set this to true to skip them. Defalut: false.
265265
* **workerNum**: Number of worker processes. The worker process will use multi-cores to help process CSV data. Set to number of Core to improve the performance of processing large csv file. Keep 1 for small csv files. Default 1.

0 commit comments

Comments
 (0)