Wesley da Silva Smitthe
Wesley da Silva Smitthe
> i had the same issue. i could solve it by adding import 'exceljs/dist/exceljs.min.js'; to the polyfill.ts (before all other polyfills) Thank you so much, that works really good to...
In my case, i had to set the initial weekday in locale. So that's my solution: `moment.locale("myLanguage", { week: { dow: 0 } })`
#5960 I posted one solution in that issue, i think it can help you.
This solution works to me: https://blog.theodo.com/2017/04/csv-excel-escape-from-the-encoding-hell-in-nodejs/ `iconv.encode(csvData, "iso-8859-1")`