-
Notifications
You must be signed in to change notification settings - Fork 649
/
Copy pathmod.ts
36 lines (34 loc) · 1.18 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2018-2025 the Deno authors. MIT license.
// This module is browser compatible.
/**
* Utility functions for media types (MIME types).
*
* This API is inspired by the GoLang {@linkcode https://pkg.go.dev/mime | mime}
* package and {@link https://github.com/jshttp/mime-types | jshttp/mime-types},
* and is designed to integrate and improve the APIs from
* {@link https://deno.land/x/media_types | x/media_types}.
*
* The `vendor` folder contains copy of the
* {@link https://github.com/jshttp/mime-types | jshttp/mime-db} `db.json` file,
* along with its license.
*
* ```ts
* import { contentType, allExtensions, getCharset } from "@std/media-types";
* import { assertEquals } from "@std/assert";
*
* assertEquals(allExtensions("application/json"), ["json", "map"]);
*
* assertEquals(contentType(".json"), "application/json; charset=UTF-8");
*
* assertEquals(getCharset("text/plain"), "UTF-8");
* ```
*
* @module
*/
export * from "./content_type.ts";
export * from "./extension.ts";
export * from "./all_extensions.ts";
export * from "./format_media_type.ts";
export * from "./get_charset.ts";
export * from "./parse_media_type.ts";
export * from "./type_by_extension.ts";