Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 4a741d4

Browse files
committed
fix output file name doubled extension for xlsx output
1 parent 3a1078d commit 4a741d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/output/xlsx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class xlsx extends Base {
7979
XLSX.utils.book_append_sheet(workbook, this.xlsxRecords, 'Records');
8080
}
8181

82-
XLSX.writeFile(workbook, fileName + extName);
82+
XLSX.writeFile(workbook, fileName);
8383

8484
resolve();
8585
}

0 commit comments

Comments
 (0)