UNPKG

origin_storage_manager

Version:

multi cloud's storage event manager

9 lines (7 loc) 246 B
export const downloadBlob = (blob, fileName) => { const url = window.URL.createObjectURL(blob); let tempLink = document.createElement('a'); tempLink.href = url; tempLink.setAttribute('download', fileName); tempLink.click(); };