Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix output file name doubled extension for xlsx output
  • Loading branch information
cgdobre committed Sep 8, 2018
commit 4a741d402023a703dbb4a1c494d28bd17a725238
2 changes: 1 addition & 1 deletion src/output/xlsx.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class xlsx extends Base {
XLSX.utils.book_append_sheet(workbook, this.xlsxRecords, 'Records');
}

XLSX.writeFile(workbook, fileName + extName);
XLSX.writeFile(workbook, fileName);

resolve();
}
Expand Down