Is there a way to increase the number of simultaneous downloads beyond the current limit of 10 in the code below?
transferFiles(){
this.checkMark = true
let i = 0
this.finalImages.forEach((image) =>{
i++
saveAs(image, 'imagem'+i);
})
}
}
}