Skip to main content
Module

std/semver/mod.ts>default

Deno standard library
Go to Latest
class default
import { default } from "https://deno.land/std@0.177.0/semver/mod.ts";

Constructors

new
default(version: string | SemVer, options?: Options)

Properties

build: ReadonlyArray<string>
major: number
minor: number
options: Options
patch: number
prerelease: Array<string | number>
raw: string
version: string

Methods

compare(other: string | SemVer): 1 | 0 | -1
compareBuild(other: string | SemVer): 1 | 0 | -1
compareMain(other: string | SemVer): 1 | 0 | -1
comparePre(other: string | SemVer): 1 | 0 | -1
format(opts?: { style?:
| "release"
| "prerelease"
| "build"
| "full"
; }
): string
increment(
release: ReleaseType,
identifier?: string,
metadata?: string,
): SemVer
toString(): string