Is there a way PapaParse can replace empty Strings to a custom text? I want to export JSON to CSV but when there is a field with no data in it I want to export something like "MISSING DATA" automatically without going trough my array with a loop checking if there is data
those are my options:
this.csvFile = this.papa.unparse(jsonData,this.options);
options = {
quotes: false, //or array of booleans
quoteChar: '""',
delimiter: ";",
header: false,
skipEmptyLines: true,
}