Last active
October 17, 2020 20:41
-
-
Save ravecat/2fe0b37d6ad46455fcf92ba8061d20df to your computer and use it in GitHub Desktop.
js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const downloadAsCSVFile = function(csv, fname) { | |
let csvfile = new Blob([csv], {type: 'text/csv'}) | |
let downlink = document.createElement('a') | |
downlink.download = fname | |
downlink.href = window.URL.createObjectURL(csvfile) | |
downlink.style.display = 'none' | |
document.body.appendChild(downlink) | |
downlink.click() | |
document.body.removeChild(downlink) | |
} | |
downloadAsCSVFile(anyDataString, 'filename.csv') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment