changed defaults in csv generation

This commit is contained in:
Djeeberjr 2025-10-23 16:32:55 +02:00
parent 7c0c0699b5
commit 4bf89626b9

View File

@ -11,10 +11,10 @@ type InputRows = RowObject[];
export function generateCSVString(input: InputRows, opts: CSVOptions = {}): string {
const {
delimiter = ",",
delimiter = ";",
headerOrder,
eol = "\r\n",
includeBOM = false,
includeBOM = true,
nullString = "",
} = opts;