Skip to content

Instantly share code, notes, and snippets.

@HananoshikaYomaru
Last active April 18, 2023 10:30
Show Gist options
  • Save HananoshikaYomaru/d15fc7b3cbd9f2ced8b0f7eb9078233a to your computer and use it in GitHub Desktop.
Save HananoshikaYomaru/d15fc7b3cbd9f2ced8b0f7eb9078233a to your computer and use it in GitHub Desktop.
getImageFromObjectUrl.ts
export const getFileFromObjectUrl = async (url: string) => {
const result = await fetch(url);
return result.blob();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment