You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ A CSV stream reader, with many many features, and ability to work with the large
9
9
* Support for excel-style multiline cells wrapped in quotes
10
10
* Choosing a different delimiter instead of the comma
11
11
* Automatic skipping empty lines
12
+
* Automatic skipping of the first header row
12
13
* Automatic parsing of numbers and booleans
13
14
* Automatic trimming
14
15
* Being a stream transformer, you can `.pause()` if you need some time to process the row and `.resume()` when you are ready to receive and process more rows.
@@ -29,6 +30,7 @@ Name | Type | Default | Explanation
29
30
`multiline` | `Boolean` | `true` | Allow multiline cells, when the cell is wrapped with quotes ("...\n...")
30
31
`allowQuotes` | `Boolean` | `true` | Should quotes be treated as a special character that wraps cells etc.
31
32
`skipEmptyLines` | `Boolean` | `false` | Should empty lines be automatically skipped?
33
+
`skipHeader` | `Boolean` | `false` | Should the first header row be skipped?
32
34
`parseNumbers` | `Boolean` | `false` | Should numbers be automatically parsed? This will parse any format supported by `parseFloat` including scientific notation, `Infinity` and `NaN`.
0 commit comments