Latest
function minSatisfying
import { minSatisfying } from "https://dotland.deno.dev/std@0.224.0/semver/min_satisfying.ts";

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

Parameters

versions: SemVer[]

The versions to check.

range: Range

The range of possible versions to compare to.

Returns

SemVer | undefined

The lowest version in versions that satisfies the range.