Skip to main content
Module

x/fastro/server/deps.ts>extension

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

For a given media type, return the most relevant extension, or undefined if no extension can be found.

Extensions are returned without a leading ..

Examples

Example 1

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

extension("text/plain"); // `txt`
extension("application/json"); // `json`
extension("text/html; charset=UTF-8"); // `html`
extension("application/foo"); // undefined

Parameters

type: string

Returns

string | undefined