csv-parser
csv-parser copied to clipboard
Quote character not removed properly
If there is a space after the comma, i.e.
val1, val2,
the col[2] is "val3 - it is trimmed but the first quote is not removed.
val1, val2,"val3", val4
without space it gives the correct result.