8 lines
309 B
JavaScript
Raw Normal View History

2025-01-24 19:17:26 -03:00
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);
}