**Describe the bug** Quotes are not parsed and an error is raised: > Invalid Opening Quote: a quote is found inside a field at line 2 **To Reproduce** ``` col1 col2 val1 "val "" 2" ``` ```js parse(report, { delimiter: '\t', skipEmptyLines: true, }) ``` **Additional context** Tried suggestion from #289, to set `quote` value to empty string, but then quotes are not parsed at all: ```js { col1: 'val1', col2: '"val "" 2"' } ``` Thanks!
Describe the bug
Quotes are not parsed and an error is raised:
To Reproduce
Additional context
Tried suggestion from #289, to set
quotevalue to empty string, but then quotes are not parsed at all:Thanks!