Skip to content

Instantly share code, notes, and snippets.

@krzysztofMlczk
Created January 20, 2023 11:54
Show Gist options
  • Save krzysztofMlczk/2bcb39e777aa6cb5e4730d15d593f205 to your computer and use it in GitHub Desktop.
Save krzysztofMlczk/2bcb39e777aa6cb5e4730d15d593f205 to your computer and use it in GitHub Desktop.
Get mime type from image URL
async function getMimeTypeFromImageUrl(imageUrl: string) {
try {
const response = await fetch(imageUrl, { method: 'HEAD' });
return response.headers.get('content-type');
} catch (err) {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment