Download Double Qutoes CSV File

Hi,
Below code is for download CSV file
if (type === “csv”) {
pivot.export.csv({
name: fileName,
flat: true,
rowDelimiter: “\n”,
columnDelimiter: “,”
});
}

Can we add double qutoes before download csv data file and after download it will remove.
Basically I need double qutoes data in CSV file but not show on UI pivot table. So how to achive this.

I changed the data run time but it is reflecting on UI pivot table. How to to achive that double qutoes come on CSV file but not in Excel file or UI.

There is no possibility to interrupt the mechanics of the export routine to modify its process.