PHP 8.2.30
Preview: identifiers.js Size: 424 B
//opt/alt/alt-nodejs22/root/usr/lib/node_modules/npm/node_modules/semver/internal/identifiers.js

'use strict'

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
873 B lrw-r--r-- 2026-02-23 06:54:01
Edit Download
240 B lrw-r--r-- 2026-02-23 06:54:01
Edit Download
424 B lrw-r--r-- 2026-02-23 06:54:01
Edit Download
802 B lrw-r--r-- 2026-02-23 06:54:01
Edit Download
338 B lrw-r--r-- 2026-02-23 06:54:01
Edit Download
7.95 KB lrw-r--r-- 2026-02-23 06:54:01
Edit Download

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