We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3da446 commit c05679cCopy full SHA for c05679c
src/csv_export_util.js
@@ -62,7 +62,7 @@ const exportCSV = function(data, keys, filename, separator, noAutoBOM, excludeCS
62
const dataString = toString(data, keys, separator, excludeCSVHeader);
63
if (typeof window !== 'undefined') {
64
noAutoBOM = noAutoBOM === undefined ? true : noAutoBOM;
65
- saveAs(new Blob([ dataString ],
+ saveAs(new Blob([ '\ufeff', dataString ],
66
{ type: 'text/plain;charset=utf-8' }),
67
filename, noAutoBOM);
68
}
0 commit comments