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

std/semver/mod.ts>maxSatisfying

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function maxSatisfying
import { maxSatisfying } from "https://deno.land/std@0.188.0/semver/mod.ts";

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

Type Parameters

T extends string | SemVer

Parameters

versions: ReadonlyArray<T>
range: string | Range
optional
options: Options

Returns

T | null