mafintosh / csv-parser

Streaming csv parser inspired by binary-csv that aims to be faster than everyone else
MIT License
1.41k stars 134 forks source link

Skip Empty Lines #230

Open LiamKarlMitchell opened 1 year ago

LiamKarlMitchell commented 1 year ago

Feature Proposal

An option to skip empty lines and continue processing.

Feature Use Case

CSV data I am importing has empty lines, which throw a RangeError. But in the few places they exist, under header and end of files rows it is fine to have.

CSV is exported from bank for account statements, writing a script to import them into Invoice Ninja on a schedule.

Easy to adapt and add as shown in PR.