Skip to main content
Module

std/semver/mod.ts>maxSatisfying

Deno standard library
Go to Latest
function maxSatisfying
import { maxSatisfying } from "https://deno.land/std@0.192.0/semver/mod.ts";

Returns the highest version in the list that satisfies the range, or undefined if none of them do.

Parameters

versions: SemVer[]

The versions to check.

The range of possible versions to compare to.

Returns

SemVer | undefined

The highest version in versions that satisfies the range.

Type Parameters

T extends string | SemVer

Parameters

versions: readonly T[]
range: string | SemVerRange
optional
options: { includePrerelease: boolean; }

Returns

T | undefined