UNPKG

@daysnap/utils

Version:
14 lines (12 loc) 284 B
// src/downloadFile.ts function downloadFile(data, options) { const a = document.createElement("a"); a.href = typeof data === "string" ? data : URL.createObjectURL(data); if (options?.fileName) { a.download = options.fileName; } a.click(); } export { downloadFile };