Skip to content

Instantly share code, notes, and snippets.

@Lcfvs
Created June 11, 2021 22:40
Show Gist options
  • Save Lcfvs/86d1d7435b1b4ac5970be7432b885ea9 to your computer and use it in GitHub Desktop.
Save Lcfvs/86d1d7435b1b4ac5970be7432b885ea9 to your computer and use it in GitHub Desktop.
fileToURI.js
const fileToURI = async file => new Promise((onload, onerror) =>
Object.assign(new FileReader(), { onload, onerror })
.readAsDataURL(file))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment