UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

9 lines 261 B
export const downloadFile = (file) => { const a = document.createElement("a"); const url = URL.createObjectURL(file); a.href = url; a.download = file.name; a.click(); URL.revokeObjectURL(url); }; //# sourceMappingURL=download-file.js.map