Skip to content

Instantly share code, notes, and snippets.

@gareth-cheeseman
Created December 21, 2018 11:50
Show Gist options
  • Save gareth-cheeseman/e124640d7c98825393500613e6cadb30 to your computer and use it in GitHub Desktop.
Save gareth-cheeseman/e124640d7c98825393500613e6cadb30 to your computer and use it in GitHub Desktop.
Convert blob to data url js
export const blobToDataUrl = blob => {
const reader = new FileReader();
reader.readAsDataURL(blob);
reader.onloadend = () => {
const base64Data = reader.result;
return base64Data;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment