danielgindi / node-csv-reader

A CSV stream reader, with many many features, and ability to work with the largest datasets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Values within quotes read as two items if comma is found in them

Dhana-Krishnasamy opened this issue · comments

commented

For example if a row has values a,b,"c,d",e.. csv-reader reads them as a , b, c, d, e, instead of a, b, "c,d", e

I've added a test - and it seems to work fine.
If you see a different result, please first check your version, and then create a PR with a failing test.