-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Open
Labels
Description
I am getting RangeError when I add more than 2400 files, Total size of the final zip file would be around 1.3gb. Works fine for anything less than that.
zip.generateAsync({ type: "blob" }, function onUpdateCallback(metadata) {
console.log(metadata); //This goes to 100% then RangeError
}
).then(function (content) {
saveAs(content, "test.zip");
});