vscode-edit-csv icon indicating copy to clipboard operation
vscode-edit-csv copied to clipboard

Non-quote quoteChar still quotes quotes

Open janisdd opened this issue 5 months ago • 0 comments

What OS?

  • all

Description

From issue 1035 in papaparse which also affects our version of papaparse

console.log(csv.unparse([['x"y']], { quoteChar: '@', delimiter: ' ' }))

outputs

@x"y@

but should output

x"y

janisdd avatar Sep 28 '24 17:09 janisdd