function extensionsByType
extensionsByType(type: string): string[] | undefinedReturns 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
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
type: stringReturn Type
string[] | undefined