Skip to main content
Module

x/fastro/server/deps.ts>typeByExtension

Fast and simple web application framework for deno
Go to Latest
function typeByExtension
Re-export
import { typeByExtension } from "https://deno.land/x/fastro@v0.70.5/server/deps.ts";

Returns the media type associated with the file extension. Values are normalized to lower case and matched irrespective of a leading ..

When extension has no associated type, the function returns undefined.

Examples

Example 1

import { typeByExtension } from "https://deno.land/std@0.223.0/media_types/type_by_extension.ts";

typeByExtension("js"); // `application/json`
typeByExtension(".HTML"); // `text/html`
typeByExtension("foo"); // undefined
typeByExtension("file.json"); // undefined

Parameters

extension: string

Returns

string | undefined