Skip to main content
Module

x/fastro/server/deps.ts>formatMediaType

Fast and simple web application framework for deno
Go to Latest
function formatMediaType
Re-export
import { formatMediaType } from "https://deno.land/x/fastro@v0.70.5/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

import { formatMediaType } from "https://deno.land/std@0.223.0/media_types/format_media_type.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