Skip to main content
Module

std/semver/mod.ts>minSatisfying

Deno standard library
Go to Latest
function minSatisfying
import { minSatisfying } from "https://deno.land/std@0.177.1/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