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
I have a use case where the incoming stream has to skip first few lines of data. I have written standard code to intercept the stream and then write entire data to fast-csv parser. But it would be sleek if the library is able to take following as options and skips accordingly
//Numeric value to skip x top lines
skipTopLines: x,
The text was updated successfully, but these errors were encountered:
* [ADDED] `maxRows` option to limit the number of rows parsed. #275#277 - @cbrittingham
* [ADDED] `skipRows` to allow skipping parsed rows see parsing.md
* [ADDED] `skipLines` to allow skipping entire lines of a csv parsing.md #267
* Exported formatting and parsing types.
* Removed `.npmignore` in favor of `package.json` files
I have a use case where the incoming stream has to skip first few lines of data. I have written standard code to intercept the stream and then write entire data to fast-csv parser. But it would be sleek if the library is able to take following as options and skips accordingly
The text was updated successfully, but these errors were encountered: