mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
7 lines
225 B
JavaScript
7 lines
225 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();
|
|
}
|