Hello,
How to only apply formatters to some fields ?
In the exemple bellow, the price field should be formatted with a "," separator, but not the average field ?
// data
[{
title: "title",
price: 19.45
average: 2.9849302
}, {
...
}]
// wanted csv
"title";"price";"average"
"title";10,45;"2.9849302"
...
Before, i was using the removed option stringify.