function maxSatisfyingView codemaxSatisfying(versions: SemVer[],range: Range): SemVer | undefinedReturns the highest 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 highest version in versions that satisfies the range.