PHP 8.2.30
Preview: max-satisfying.js Size: 579 B
/opt/alt/alt-nodejs20/root/lib/node_modules/npm/node_modules/semver/ranges/max-satisfying.js

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

Directory Contents

Dirs: 0 × Files: 11

Name Size Perms Modified Actions
217 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download
210 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download
213 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download
579 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download
577 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download
1.46 KB lrw-r--r-- 2026-02-23 03:24:44
Edit Download
2.14 KB lrw-r--r-- 2026-02-23 03:24:44
Edit Download
1.31 KB lrw-r--r-- 2026-02-23 03:24:44
Edit Download
7.33 KB lrw-r--r-- 2026-02-23 03:24:44
Edit Download
268 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download
312 B lrw-r--r-- 2026-02-23 03:24:44
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).