Dictionary array to csv converter
Last updated
Last updated
[data/csv/Dictionary array to csv converter]
Formats a dictionary array as a csv string. Does not support multi-level dictionaries. Example:
'array' receives [ { "a":1 "b":2 }, { "a":11 "b":22 }, ]
'csv' sends "a,b 1,1 11,11"
Keywords: array, dictionary, csv, convert, stringify, serialize
table: {string: (string or number or boolean)}[]
Receives the array of dictionaries to format. Example: [ { "a":1 "b":2 }, { "a":11 "b":22 }, ]
CSV: string
The resulting csv string.