mirror of
https://github.com/CorentinTh/it-tools
synced 2026-05-12 07:21:05 +00:00
11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
const downloadBase64File = (dataUrl: string, name = 'file') => {
|
|
const a = document.createElement('a')
|
|
a.href = dataUrl
|
|
a.download = name
|
|
a.click()
|
|
}
|
|
|
|
export {
|
|
downloadBase64File
|
|
}
|