mirror of
https://github.com/xibyte/jsketcher
synced 2026-03-29 17:45:27 +02: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();
|
|
}
|