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.143.203.21
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 abs = Math.abs , floor = Math.floor , log = Math.log , min = Math.min , pow = Math.pow , LN2 = Math.LN2 , roundToEven; roundToEven = function (num) { var whole = floor(num), fraction = num - whole; if (fraction < 0.5) return whole; if (fraction > 0.5) return whole + 1; return whole % 2 ? whole + 1 : whole; }; // eslint-disable-next-line max-statements, max-lines-per-function module.exports = function (value, ebits, fbits) { var bias = (1 << (ebits - 1)) - 1, sign, e, fraction, i, bits, str, bytes; // Compute sign, exponent, fraction if (isNaN(value)) { // NaN // http://dev.w3.org/2006/webapi/WebIDL/#es-type-mapping e = (1 << ebits) - 1; fraction = pow(2, fbits - 1); sign = 0; } else if (value === Infinity || value === -Infinity) { e = (1 << ebits) - 1; fraction = 0; sign = value < 0 ? 1 : 0; } else if (value === 0) { e = 0; fraction = 0; sign = 1 / value === -Infinity ? 1 : 0; } else { sign = value < 0; value = abs(value); if (value >= pow(2, 1 - bias)) { e = min(floor(log(value) / LN2), 1023); fraction = roundToEven((value / pow(2, e)) * pow(2, fbits)); if (fraction / pow(2, fbits) >= 2) { e += 1; fraction = 1; } if (e > bias) { // Overflow e = (1 << ebits) - 1; fraction = 0; } else { // Normal e += bias; fraction -= pow(2, fbits); } } else { // Subnormal e = 0; fraction = roundToEven(value / pow(2, 1 - bias - fbits)); } } // Pack sign, exponent, fraction bits = []; for (i = fbits; i; i -= 1) { bits.push(fraction % 2 ? 1 : 0); fraction = floor(fraction / 2); } for (i = ebits; i; i -= 1) { bits.push(e % 2 ? 1 : 0); e = floor(e / 2); } bits.push(sign ? 1 : 0); bits.reverse(); str = bits.join(""); // Bits to bytes bytes = []; while (str.length) { bytes.push(parseInt(str.substring(0, 8), 2)); str = str.substring(8); } return bytes; };