Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
alphanum-sort /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
compare.js
2.93
KB
-rw-rw-r--
2022-08-30 11:49
index.js
710
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var compare = require('./compare'); function mediator(a, b) { return compare(this, a.converted, b.converted); } module.exports = function (array, opts) { if (!Array.isArray(array) || array.length < 2) { return array; } if (typeof opts !== 'object') { opts = {}; } opts.sign = !!opts.sign; var insensitive = !!opts.insensitive; var result = Array(array.length); var i, max, value; for (i = 0, max = array.length; i < max; i += 1) { value = String(array[i]); result[i] = { value: array[i], converted: insensitive ? value.toLowerCase() : value }; } result.sort(mediator.bind(opts)); for (i = result.length - 1; ~i; i -= 1) { result[i] = result[i].value; } return result; };