Skip to content

Instantly share code, notes, and snippets.

@Veveue
Created November 29, 2018 03:13
Show Gist options
  • Select an option

  • Save Veveue/5f899bb2f2c470f41aa305c3a939a245 to your computer and use it in GitHub Desktop.

Select an option

Save Veveue/5f899bb2f2c470f41aa305c3a939a245 to your computer and use it in GitHub Desktop.
blob2File
function blob2File(blob, name, type) {
return new File([blob], name, type ? { type: type } : undefined);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment