UNPKG

@opengis/fastify-table

Version:

core-plugins

8 lines (7 loc) 217 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]; } export default getMimeType;