404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.219.217.55: ~ $
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
}

Filemanager

Name Type Size Permission Actions
constants.js File 468 B 0644
debug.js File 226 B 0644
identifiers.js File 409 B 0644
re.js File 6.51 KB 0644