Skip to content

Instantly share code, notes, and snippets.

@marco-souza
Created June 10, 2019 22:01
Show Gist options
  • Select an option

  • Save marco-souza/31f02d564bff8301e7b022608fd1abbf to your computer and use it in GitHub Desktop.

Select an option

Save marco-souza/31f02d564bff8301e7b022608fd1abbf to your computer and use it in GitHub Desktop.
Download CSV form string
export function downloadCSV(CSVText, filename) {
const link = document.createElement('a');
link.setAttribute('href', window.URL.createObjectURL(
new Blob([CSVText]),
{ type: 'text/plain' }
));
link.setAttribute('download', `${filename}.csv`);
document.body.appendChild(link); // Required for FF
link.click();
document.body.removeChild(link);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment