ryu1kn / csv-writer

Convert objects/arrays into a CSV string or write them into a CSV file
https://www.npmjs.com/package/csv-writer
MIT License
246 stars 39 forks source link

Doesn't quote the empty string #38

Closed ghost closed 4 years ago

ghost commented 4 years ago

If alwaysQuote is enabled, writing a record which contains the empty string doesn't quote the empty string.

Writing record ['hello' , '']

Expected: "hello","" but get "hello",

ryu1kn commented 4 years ago

Hi @theonlygusti , sorry for my slow response. Do you want to share why you want quotes for empty values?

ryu1kn commented 4 years ago

Closing this for now as no additional context is available ...