I got an issue when export csv file. I try use \uFEFF, but it not working :(((
const BOM = "\uFEFF";
const sample = "sep=,\n" + data1;
const csv = new Blob([BOM + sample], {
type: "text/csv;charset=utf-8"
});
I got an issue when export csv file. I try use \uFEFF, but it not working :(((
const BOM = "\uFEFF";
const sample = "sep=,\n" + data1;
const csv = new Blob([BOM + sample], {
type: "text/csv;charset=utf-8"
});