Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.74
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
semver /
ranges /
[ HOME SHELL ]
Name
Size
Permission
Action
gtr.js
217
B
-rw-r--r--
intersects.js
201
B
-rw-r--r--
ltr.js
213
B
-rw-r--r--
max-satisfying.js
579
B
-rw-r--r--
min-satisfying.js
577
B
-rw-r--r--
min-version.js
1.36
KB
-rw-r--r--
outside.js
2.14
KB
-rw-r--r--
to-comparators.js
268
B
-rw-r--r--
valid.js
312
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : min-satisfying.js
const SemVer = require('../classes/semver') const Range = require('../classes/range') const minSatisfying = (versions, range, options) => { let min = null let minSV = null let rangeObj = null try { rangeObj = new Range(range, options) } catch (er) { return null } versions.forEach((v) => { if (rangeObj.test(v)) { // satisfies(v, range, options) if (!min || minSV.compare(v) === 1) { // compare(min, v, true) min = v minSV = new SemVer(min, options) } } }) return min } module.exports = minSatisfying
Close