web-mime-types
v1.0.1
Published
Mapping of the most common MIME types on the Web by extension. Currently 75 extensions.
Downloads
7
Readme
web-mime-types
Mapping of the most common MIME types on the Web by extension. Currently 75 extensions.
Installation
npm install web-mime-types
Usage
import webMimeTypes from "web-mime-types";
const jpegData = await (await fetch(url)).arrayBuffer();
const image = document.createElement("image");
image.src = URL.createObjectURL(
new Blob([jpegData], { type: webMimeTypes["jpg"] }),
);
API
web-mime-types
MIMETypesByExtension : Object.<string, MIMEType> ⏏
Map of file extension to MIME type
Kind: Exported constant See: MDN Common MIME types
License
MIT. See license file.