Skip to content

Commit

Permalink
Fixed ESM default export
Browse files Browse the repository at this point in the history
  • Loading branch information
reviewher committed Aug 23, 2022
1 parent 045adba commit 0de9479
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions misc/98_esmxport.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ export {
export default {
parse_xlscfb,
parse_zip,
readSync as read,
readFileSync as readFile,
read: readSync,
readFile: readFileSync,
readFileSync,
writeSync as write,
writeFileSync as writeFile,
write: writeSync,
writeFile: writeFileSync,
writeFileSync,
writeFileAsync,
writeSyncXLSX as writeXLSX,
writeFileSyncXLSX as writeFileXLSX,
writeXLSX: writeSyncXLSX,
writeFileXLSX: writeFileSyncXLSX,
utils,
set_fs,
set_cptable,
__stream as stream,
stream: __stream,
SSF,
CFB
}

0 comments on commit 0de9479

Please sign in to comment.