Skip to content

Instantly share code, notes, and snippets.

@nathanoffline
Created August 16, 2020 23:46
Show Gist options
  • Save nathanoffline/16a3413b1b03aebef5f958cd8818a2ca to your computer and use it in GitHub Desktop.
Save nathanoffline/16a3413b1b03aebef5f958cd8818a2ca to your computer and use it in GitHub Desktop.
const download = (url, filename) => {
fetch(url).then(res => {
return res.blob().then(b => {
const a = document.createElement('a')
a.href = URL.createObjectURL(b)
a.setAttribute('download', filename)
a.click()
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment