mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
7 lines
226 B
JavaScript
7 lines
226 B
JavaScript
|
|
export default function(data, fileName) {
|
|
const link = document.getElementById("downloader");
|
|
link.href = "data:application/octet-stream;charset=utf-8;base64," + btoa(data);
|
|
link.download = fileName;
|
|
link.click();
|
|
};
|