Created
March 8, 2018 16:33
-
-
Save josellausas/c18acf60354a6c341561bc135096606a to your computer and use it in GitHub Desktop.
Javascript: Download as CSV
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
const downloadCSV = csv_data => { | |
const hidden_element = document.createElement("a"); | |
const uri_encoded = encodeURI(csv_data); | |
hidden_element.href = `data:text/csv;charset=utf8,${uri_encoded}`; | |
hidden_element.target = "_blank"; | |
hidden_element.download = "storypins.csv"; | |
hidden_element.click(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment