Skip to content

Instantly share code, notes, and snippets.

@Github3742
Created March 14, 2021 23:48
Show Gist options
  • Save Github3742/8b376dd07863c99ac2f491325fc6fa1a to your computer and use it in GitHub Desktop.
Save Github3742/8b376dd07863c99ac2f491325fc6fa1a to your computer and use it in GitHub Desktop.
save: function Download(filename, data) {
var blob = new Blob([data], {type: 'text/csv'});
if(window.navigator.msSaveOrOpenBlob) {
window.navigator.msSaveBlob(blob, filename);
}
else{
var elem = window.document.createElement('a');
elem.href = window.URL.createObjectURL(blob);
elem.download = filename;
document.body.appendChild(elem);
elem.click();
document.body.removeChild(elem);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment