PHP 8.2.30
Preview: identifiers.js Size: 525 B
/proc/thread-self/root/opt/alt/alt-nodejs24/root/lib/node_modules/npm/node_modules/semver/internal/identifiers.js

'use strict'

const numeric = /^[0-9]+$/
const compareIdentifiers = (a, b) => {
  if (typeof a === 'number' && typeof b === 'number') {
    return a === b ? 0 : a < b ? -1 : 1
  }

  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 07:38:44
Edit Download
240 B lrw-r--r-- 2026-02-23 07:38:44
Edit Download
525 B lrw-r--r-- 2026-02-23 07:38:44
Edit Download
802 B lrw-r--r-- 2026-02-23 07:38:44
Edit Download
338 B lrw-r--r-- 2026-02-23 07:38:44
Edit Download
7.95 KB lrw-r--r-- 2026-02-23 07:38:44
Edit Download

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