Skip to main content
Go to Latest
function formatMediaType
import { formatMediaType } from "https://deno.land/std@0.151.0/media_types/mod.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 ("").

Example

import { formatMediaType } from "https://deno.land/std@0.151.0/media_types/mod.ts";

formatMediaType("text/plain", { charset: "UTF-8" }); // `text/plain; charset=UTF-8`

Parameters

type: string
optional
param: Record<string, string> | Iterable<[string, string]>

Returns

string