Worms David
Worms David
Do you have any idea what the issue is?
@cullylarson I imported [your code](https://github.com/adaltas/node-csv/commit/f79fe219577b3516d662df62f8802f8714c4abdb) and it was working, not much I can do from there.
Sorry but unless you provide me a script replicating the issue, it will be hard for us to investigate.
Nope, I don't have much time lately. Moreover, this is a TS compilation error, and I am no expert in that matter.
Looking at your input, it seems like a combinaison of `skip_empty_lines` and `relax_column_count` will do, see my [sample code](https://github.com/adaltas/node-csv/blob/master/demo/issues-cjs/lib/330.1.js): ```js const {parse} = require('csv/sync'); const input = ` Date, Type,...
I confirm that we don't handle yet quotes with `ignore_last_delimiters` and it generates an unexpected error. Looking at how to implement this, there are divergent ways to handle it, does...
Speaking about `ignore_trailing_delimiters`: 1. what you are suggesting is `a,"b",c,"d"` yields to `["a","b,c,d"]`, right ? 2. If so, I am concerned about how to handle `a,"b""c","d,e"`. The first field contains...
OK, this is much more clear.
You can send me a pull request with the suggested changes. I'll review it, merge it and publish a new 1.2.1 version. I honestly don't have the time to support...
Hi @missinglink, supporting regular expression is impossible. It would apply to the all record but to know what is a record, we need to parse the record because a record...