I'm using blob to download files, Problem is I want to keep Object URL even after downloading the file, without making major changes in code base.
So one of the option is not to call URL.revokeObjectURL();
Is it safe to depend on browser's garbage collector to avoid any memory leak?
Do I always need to call URL.revokeObjectURL();
explicitly ?