Skip to content

Instantly share code, notes, and snippets.

@wlib
Created August 14, 2017 20:57
Show Gist options
  • Save wlib/32adb8dd767ee40e91df65d16c543b95 to your computer and use it in GitHub Desktop.
Save wlib/32adb8dd767ee40e91df65d16c543b95 to your computer and use it in GitHub Desktop.
async function uriToArrayBuffer(uri) {
const fetched = await fetch(uri)
const body = await fetched.body.getReader();
const read = await body.read();
return read.value.buffer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment