function formatMediaType
formatMediaType(): stringSerializes 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 "@std/media-types/format_media_type"; formatMediaType("text/plain", { charset: "UTF-8" }); // "text/plain; charset=UTF-8"