Skip to content

Instantly share code, notes, and snippets.

@Gkiokan
Created May 14, 2018 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gkiokan/e381b21ad7de269487f5a160c4de1f06 to your computer and use it in GitHub Desktop.
Save Gkiokan/e381b21ad7de269487f5a160c4de1f06 to your computer and use it in GitHub Desktop.
JS Download DataStream
let blob = new Blob([this.stream], { type: 'application/csv' } )
let link = document.createElement('a')
link.href = window.URL.createObjectURL(blob)
link.download = this.get_download_name()
link.click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment