8 lines
309 B
JavaScript
8 lines
309 B
JavaScript
window.saveAsFile = function (filename, byteBase64) {
|
|
var link = this.document.createElement('a');
|
|
link.download = filename;
|
|
link.href = "data:application/octet-stream;base64," + byteBase64;
|
|
this.document.body.appendChild(link);
|
|
link.click();
|
|
this.document.body.removeChild(link);
|
|
} |