1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: error with empty functions/procedures

This commit is contained in:
2021-01-11 18:56:51 +01:00
parent 49d71722e2
commit f150508547
3 changed files with 31 additions and 2 deletions

View File

@ -25,13 +25,14 @@ const arrayToFile = args => {
break;
}
const file = new Blob([content], { mime });
const file = new Blob([content], { type: mime });
const downloadLink = document.createElement('a');
downloadLink.download = `${args.filename}.${args.type}`;
downloadLink.href = window.URL.createObjectURL(file);
downloadLink.style.display = 'none';
document.body.appendChild(downloadLink);
downloadLink.click();
downloadLink.remove();
};
export default arrayToFile;