Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save railsstudent/b599c43a71331d6f037b022a63a9f704 to your computer and use it in GitHub Desktop.
Save railsstudent/b599c43a71331d6f037b022a63a9f704 to your computer and use it in GitHub Desktop.
Use FileSaver to open File object
openFile(name: string) {
if (this.formData[name]) {
const file = this.formData[name] as File
const { name: filename } = file
saveAs(file, filename);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment