PHP 8.2.30
Preview: identifiers.js Size: 410 B
//opt/alt/alt-nodejs18/root/lib/node_modules/npm/node_modules/semver/internal/identifiers.js

const numeric = /^[0-9]+$/
const compareIdentifiers = (a, b) => {
  const anum = numeric.test(a)
  const bnum = numeric.test(b)

  if (anum && bnum) {
    a = +a
    b = +b
  }

  return a === b ? 0
    : (anum && !bnum) ? -1
    : (bnum && !anum) ? 1
    : a < b ? -1
    : 1
}

const rcompareIdentifiers = (a, b) => compareIdentifiers(b, a)

module.exports = {
  compareIdentifiers,
  rcompareIdentifiers,
}

Directory Contents

Dirs: 0 × Files: 6

Name Size Perms Modified Actions
859 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
226 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
410 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
788 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
324 B lrw-r--r-- 2026-03-09 09:08:38
Edit Download
7.75 KB lrw-r--r-- 2026-03-09 09:08:38
Edit Download

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