using xlsx lib instead of exceljs, export excel files

This commit is contained in:
Jan Prochazka
2020-11-19 10:30:06 +01:00
parent 6324fd1de4
commit da805db44b
9 changed files with 192 additions and 412 deletions

View File

@@ -0,0 +1,12 @@
const finalizers = [];
module.exports = {
async run() {
for (const func of finalizers) {
await func();
}
},
register(func) {
finalizers.push(func);
},
};