Skip to content

Instantly share code, notes, and snippets.

@ravecat
Last active October 17, 2020 20:41
Show Gist options
  • Save ravecat/2fe0b37d6ad46455fcf92ba8061d20df to your computer and use it in GitHub Desktop.
Save ravecat/2fe0b37d6ad46455fcf92ba8061d20df to your computer and use it in GitHub Desktop.
js
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