Try to reduce memory impact by deleting used chunks
This commit is contained in:
parent
b634772f2d
commit
a6f5280de5
|
@ -165,6 +165,7 @@ export function convertAndUpload(files: File[], format: string) {
|
|||
let j = 0;
|
||||
while (j < converted.length) {
|
||||
yield await converted[j];
|
||||
delete converted[j];
|
||||
j++;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue