Last active
September 25, 2018 19:10
-
-
Save albinekb/5beb723f6a630b7ff6f2d6d3299cf094 to your computer and use it in GitHub Desktop.
This file contains 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
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