sheetaki/src/downloadFile.js
2021-05-25 13:09:42 -05:00

10 lines
427 B
JavaScript

//creates link to download a file. then clicks link automatically. then removes link
module.exports = function (url, filename) {
var a = document.createElement("a");
a.download = filename;
a.href = url;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
if (URL.revokeObjectURL && typeof setTimeout !== 'undefined') setTimeout(function () { URL.revokeObjectURL(url); }, 60000);
}