UNPKG

@opengis/fastify-table

Version:

core-plugins

13 lines (9 loc) 246 B
import path from 'node:path'; import types from './mimes.js'; function getMimeType(filename) { const ext = path.extname(filename) .toLocaleLowerCase() .slice(1); return types[ext] || null; } export default getMimeType;