UNPKG

@accounter/client

Version:
11 lines (10 loc) 274 B
export function downloadFile(file: File) { const url = URL.createObjectURL(file); const a = document.createElement('a'); a.href = url; a.download = file.name; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); }