Comments
-
Thank you so much for your response. I will look for any other solution in this case.
-
export function downloadCsv(csvString: string, opts: ExportCsvOpts = defaultExportCsvOpts): void { const BOM = "\uFEFF"; // its neded to aprse japanese signs const csvBlob = new Blob([`${BOM}${csvString}`], { type: "text/csv;charset=utf-8" }); const fileName = `${opts.fileName}.csv`; if (navigator.msSaveBlob) {…