Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

std/semver/mod.ts>minSatisfying

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

Returns the lowest 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