Created
November 20, 2018 15:31
-
-
Save ariesjia/629871a087c7711c844f4833a6d11da0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 saveCSV = (blob, filename) => { | |
| const blob = new Blob(["\ufeff", blob], { type: ' type: "text/csv;charset=UTF-8"' }) | |
| saveAs(blob, `${filename}.csv`); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment