Submit
Path:
~
/
/
opt
/
alt
/
alt-nodejs18
/
root
/
lib
/
node_modules
/
npm
/
node_modules
/
semver
/
internal
/
File Content:
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, }
Submit
FILE
FOLDER
Name
Size
Permission
Action
constants.js
467 bytes
0644
debug.js
226 bytes
0644
identifiers.js
410 bytes
0644
parse-options.js
383 bytes
0644
re.js
6672 bytes
0644
N4ST4R_ID | Naxtarrr