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.137.152.81
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
es5-ext /
math /
Delete
Unzip
Name
Size
Permission
Date
Action
acosh
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
asinh
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
atanh
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
cbrt
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
clz32
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
cosh
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
expm1
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
fround
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
hypot
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
imul
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
log10
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
log1p
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
log2
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
sign
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
sinh
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
tanh
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
trunc
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
_decimal-adjust.js
808
B
-rw-r--r--
1985-10-26 08:15
_pack-ieee754.js
1.94
KB
-rw-r--r--
1985-10-26 08:15
_unpack-ieee754.js
927
B
-rw-r--r--
1985-10-26 08:15
ceil-10.js
70
B
-rw-r--r--
1985-10-26 08:15
floor-10.js
71
B
-rw-r--r--
1985-10-26 08:15
index.js
597
B
-rw-r--r--
1985-10-26 08:15
round-10.js
71
B
-rw-r--r--
1985-10-26 08:15
Save
Rename
/* eslint no-bitwise: "off" */ // Credit: https://github.com/paulmillr/es6-shim/ "use strict"; var pow = Math.pow; module.exports = function (bytes, ebits, fbits) { // Bytes to bits var bits = [], i, j, bit, str, bias, sign, e, fraction; for (i = bytes.length; i; i -= 1) { bit = bytes[i - 1]; for (j = 8; j; j -= 1) { bits.push(bit % 2 ? 1 : 0); bit >>= 1; } } bits.reverse(); str = bits.join(""); // Unpack sign, exponent, fraction bias = (1 << (ebits - 1)) - 1; sign = parseInt(str.substring(0, 1), 2) ? -1 : 1; e = parseInt(str.substring(1, 1 + ebits), 2); fraction = parseInt(str.substring(1 + ebits), 2); // Produce number if (e === (1 << ebits) - 1) return fraction === 0 ? sign * Infinity : NaN; if (e > 0) return sign * pow(2, e - bias) * (1 + fraction / pow(2, fbits)); if (fraction !== 0) return sign * pow(2, -(bias - 1)) * (fraction / pow(2, fbits)); return sign < 0 ? -0 : 0; };