Replies: 1 comment 3 replies
-
You can get a list of files via the const fileInfo = []
unzipSync(yourZipBuffer, {
filter(info) { fileInfo.push(info); return false; }
}) You can extract a single file using a similar strategy, just return
The async methods probably won't work on Cloudflare Workers as they use Web Workers or Node.js' |
Beta Was this translation helpful? Give feedback.
-
I really want to use this library instead of JSZip and improve performance, but a lot of stuff is confusing me.
Beta Was this translation helpful? Give feedback.
All reactions