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.165.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(): string
deprecated
inc(release: ReleaseType, identifier?: string): SemVer
increment(release: ReleaseType, identifier?: string): SemVer
toString(): string