Skip to content

Instantly share code, notes, and snippets.

@hubgit
Last active August 29, 2015 13:56
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 hubgit/8954318 to your computer and use it in GitHub Desktop.
Save hubgit/8954318 to your computer and use it in GitHub Desktop.
Save data to a CSV file
var blob = new Blob([lines.join('\n')], { type: 'text/csv' });
window.location.href = URL.createObjectURL(blob);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment