Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/actionify/deploy/deps/semver.ts>semver.Range

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
class semver.Range
import { semver } from "https://deno.land/x/actionify@0.3.0/deploy/deps/semver.ts";
const { Range } = semver;

Constructors

new
Range(range: string | Range | Comparator, optionsOrLoose?: boolean | Options)

Properties

includePrerelease: boolean
loose: boolean
options: Options
range: string
raw: string
set: ReadonlyArray<ReadonlyArray<Comparator>>

Methods

format(): string
intersects(range?: Range, optionsOrLoose?: boolean | Options): boolean
parseRange(range: string): ReadonlyArray<Comparator>
test(version: string | SemVer): boolean
toString(): string