mholt / PapaParse

Fast and powerful CSV (delimited text) parser that gracefully handles large files and malformed input
http://PapaParse.com
MIT License
12.3k stars 1.14k forks source link

Non-quote quoteChar still quotes quotes #1035

Open retorquere opened 6 months ago

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

should output

x"y

but instead outputs

@x"y@