CSV Export¶
Deprecated, use the separate serialize and file output blocks
Export data to a CSV file. Input data can be one of:
- An array of arrays
- An array of objects
- An object explicitly defining fields and data
Default config¶
{
"type": "csv-export",
"header": true,
"skipEmptyLines": true
}
Supported properties¶
- quotes: false (or array of booleans)
- quoteChar: ‘”’
- escapeChar: ‘”’
- delimiter: “,”
- header: true
- newline: “rn”
- skipEmptyLines: false (or ‘greedy’)
- columns: null (or array of strings)