Skip to content

Instantly share code, notes, and snippets.

@ariesjia
Created November 20, 2018 15:31
Show Gist options
  • Save ariesjia/629871a087c7711c844f4833a6d11da0 to your computer and use it in GitHub Desktop.
Save ariesjia/629871a087c7711c844f4833a6d11da0 to your computer and use it in GitHub Desktop.
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