Skip to content

Instantly share code, notes, and snippets.

@albinekb
Last active September 25, 2018 19:10
Show Gist options
  • Save albinekb/5beb723f6a630b7ff6f2d6d3299cf094 to your computer and use it in GitHub Desktop.
Save albinekb/5beb723f6a630b7ff6f2d6d3299cf094 to your computer and use it in GitHub Desktop.
function download(csv) {
if (csv == null) return
const filename = `export-${new Date()}.csv`
if (!csv.match(/^data:text\/csv/i)) {
csv = 'data:text/csv;charset=utf-8,' + csv
}
const data = encodeURI(csv)
const link = document.createElement('a')
link.setAttribute('href', data)
link.setAttribute('download', filename)
link.click()
}
export { download }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment