import { formatMediaType } from "https://deno.land/x/fastro@v0.84.23/http/server/deps.ts";
Serializes the media type and the optional parameters as a media type conforming to RFC 2045 and RFC 2616.
The type and parameter names are written in lower-case.
When any of the arguments results in a standard violation then the return
value will be an empty string (""
).
Examples
Example 1
Example 1
import { formatMediaType } from "https://deno.land/std@0.224.0/media_types/format_media_type.ts";
formatMediaType("text/plain", { charset: "UTF-8" }); // "text/plain; charset=UTF-8"