Q: Is my CSV uploaded to your server?
A: No. Parsing and serialization run entirely in your browser using PapaParse. You can verify by inspecting the Network tab while formatting.
Q: Does it handle quoted fields containing commas?
A: Yes. PapaParse understands RFC 4180 quoting, so fields like"Smith, John" round-trip correctly.
Q: What does Minify do?
A: Minify strips empty lines and trims every field, producing the most compact valid CSV form — useful when embedding CSV inside logs or shell scripts.
Q: Will headers reorder my data?
A: When “Sort headers” is enabled, columns are alphabetized but row values stay aligned with their headers. Row order is preserved as-is.
Q: What delimiters are supported?
A: Comma, semicolon, tab, and pipe on output. The input is auto-detected by PapaParse when possible.