Files
med-notes/.pnpm-store/v10/files/52/0b60d1f4aa0359144dca93a2c43c0477288deeb53e2e06121d3c57b75a580b28e2efc61975a686574e43804fec035a006c62f70cb8ce8514c3bbf98bae9426
2025-06-26 03:35:15 +00:00

28 lines
593 B
Plaintext

'use strict'
const SemVer = require('../classes/semver')
const Range = require('../classes/range')
const maxSatisfying = (versions, range, options) => {
let max = null
let maxSV = null
let rangeObj = null
try {
rangeObj = new Range(range, options)
} catch (er) {
return null
}
versions.forEach((v) => {
if (rangeObj.test(v)) {
// satisfies(v, range, options)
if (!max || maxSV.compare(v) === -1) {
// compare(max, v, true)
max = v
maxSV = new SemVer(max, options)
}
}
})
return max
}
module.exports = maxSatisfying