Skip to main content
Go to Latest
function extensionsByType
import { extensionsByType } from "https://deno.land/std@0.221.0/media_types/extensions_by_type.ts";

Returns the extensions known to be associated with the media type type. When type has no associated extensions, the function returns undefined.

Extensions are returned without a leading ..

Examples

Example 1

import { extensionsByType } from "https://deno.land/std@0.221.0/media_types/extensions_by_type.ts";

extensionsByType("application/json"); // ["json", "map"]
extensionsByType("text/html; charset=UTF-8"); // ["html", "htm", "shtml"]
extensionsByType("application/foo"); // undefined

Parameters

type: string

Returns

string[] | undefined