unzipping files over 2G in javascript

131 Views Asked by At

I have been using RawDeflate in my javascript code to unzip files. Recently I found that it was silently failing sometimes, and I traced it down to the case when the original file was over 2G. I tried switching to pako but that is also failing (at least not silently). Does anyone know of any JS package that can unzip files larger then 2G?

This is what I get in my browser console:

pako.min.js:1 Uncaught invalid stored block lengths
n @ pako.min.js:1
a.inflateRaw @ pako.min.js:1
success @ ui.js:1122
l @ jquery-1.8.3.min.js:2
fireWith @ jquery-1.8.3.min.js:2
T @ jquery-1.8.3.min.js:2
r @ jquery-1.8.3.min.js:2
0

There are 0 best solutions below