Skip to main content

latest
Works with
It is unknown whether this package works with Node.js, Deno, Browsers, Cloudflare Workers, Bun
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Bun
JSR Score70%
Published2 years ago (0.215.0)
function extensionsByType
extensionsByType(type: string): string[] | undefined

Returns the extensions known to be associated with the media type type. The returned extensions will each begin with a leading dot, as in .html.

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

Extensions are returned without a leading ..

Examples

Example 1

import { extensionsByType } from "@std/media-types/extensions_by_type";

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

Parameters

Return Type

string[] | undefined

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/media-types

Import symbol

import { extensionsByType } from "@std/media-types/extensions_by_type";
or

Import directly with a jsr specifier

import { extensionsByType } from "jsr:@std/media-types/extensions_by_type";