PHP 8.2.30
Preview: identifiers.js Size: 525 B
/home/byroehnu/easepay.easetack.com/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: 7

Name Size Perms Modified Actions
127 B lr--r--r-- 2026-03-14 01:49:21
Edit Download
873 B lrw-r--r-- 2026-02-03 15:06:18
Edit Download
240 B lrw-r--r-- 2026-02-03 15:06:18
Edit Download
525 B lrw-r--r-- 2026-02-03 15:06:18
Edit Download
802 B lrw-r--r-- 2026-02-03 15:06:18
Edit Download
338 B lrw-r--r-- 2026-02-03 15:06:18
Edit Download
7.95 KB lrw-r--r-- 2026-02-03 15:06:18
Edit Download

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