Skip to main content
Module

std/semver/mod.ts>format

The Deno Standard Library
Latest
function format
Re-export
import { format } from "https://deno.land/std@0.224.0/semver/mod.ts";

Format a SemVer object into a string.

If any number is NaN then NaN will be printed.

If any number is positive or negative infinity then '∞' or '⧞' will be printed instead.

Parameters

semver: SemVer

The semantic version to format

Returns

string

The string representation of a semantic version.