I would like to delete my Blobs once they are download by the user:
var url = window.URL.createObjectURL(myBlob);
var a = document.createElement("a");
a.download = 'myFile' + fileExtension;
a.href = url;
a.click();//download launched
/** Here i want to revoke the ObjectURL and delete my Blob, but i dunno when? **/
Can i do this without using a dummy timer?