JS code construct multiply Blob data, like:
var b1 = new Blob([..40M..]);
var b2 = new Blob([..40M..]);
var b3 = new Blob([..40M..]);
I want to merge b1, b2, b3
into a single 120M
data and save it as a file, but the memory is of high cost.
Is there any solution to store it in a efficient way, like:
downloadFile.append(b1);
downloadFile.append(b2);
downloadFile.append(b3);