Advertisement
kromm77

Download blob as File

May 11th, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. export function downloadFile(blob: Blob, fileName: string) {
  2. const url = URL.createObjectURL(blob);
  3. const anchor = document.createElement('a');
  4. anchor.href = url;
  5. anchor.download = fileName;
  6.  
  7. anchor.click();
  8. URL.revokeObjectURL(url);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement