Iceshrimp.NET/Iceshrimp.Frontend/Components/ErrorUi.razor.js
2024-09-10 01:51:27 +02:00

13 lines
No EOL
392 B
JavaScript

export function DownloadFile(filename, contentType, content) {
const file = new File([content], filename, { type: contentType});
const exportUrl = URL.createObjectURL(file);
const a = document.createElement("a");
document.body.appendChild(a);
a.href = exportUrl;
a.download = filename;
a.target = "_self";
a.click();
URL.revokeObjectURL(exportUrl);
}