update at 2026-02-14 10:55:14

This commit is contained in:
douboer@gmail.com
2026-02-14 10:55:14 +08:00
parent 6709fac5ac
commit 4c9f54e0a6
4 changed files with 72 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ export function parseXlsxBuffer(buffer: ArrayBuffer): RawTable {
const rows = XLSX.utils.sheet_to_json<unknown[]>(sheet, {
header: 1,
raw: false,
defval: ''
blankrows: false
});
return toRawTable(rows);