Skip to main content
Module

std/semver/mod.ts>SemVer

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

Constructors

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