UNPKG

@startpage/local-storage

Version:

Local storage management for your startpage

17 lines (16 loc) 514 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.downloadBlob = void 0; const downloadBlob = (blobUrl, fileName) => { const link = document.createElement("a"); link.href = blobUrl; link.download = fileName; document.body.appendChild(link); link.dispatchEvent(new MouseEvent("click", { bubbles: true, cancelable: true, view: window, })); document.body.removeChild(link); }; exports.downloadBlob = downloadBlob;