function minSatisfyingView codeminSatisfying(versions: SemVer[],range: Range): SemVer | undefinedReturns the lowest version in the list that satisfies the range, or undefined if none of them do. Parametersversions: SemVer[]View codeThe versions to check. range: RangeView codeThe range of possible versions to compare to. Return TypeSemVer | undefinedView codeThe lowest version in versions that satisfies the range.