Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export function downloadFile(blob: Blob, fileName: string) {
- const url = URL.createObjectURL(blob);
- const anchor = document.createElement('a');
- anchor.href = url;
- anchor.download = fileName;
- anchor.click();
- URL.revokeObjectURL(url);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement