Given a file path, return the MIME type based on extension.
Supported:
.html → 'text/html'.css → 'text/css'.js → 'application/javascript'.json → 'application/json'.png → 'image/png'.jpg, .jpeg → 'image/jpeg''application/octet-stream'Match is case-insensitive on the extension.
Sample tests