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-interpolate /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
transform
[ DIR ]
drwxr-xr-x
array.js
540
B
-rw-r--r--
basis.js
600
B
-rw-r--r--
basisClosed.js
363
B
-rw-r--r--
color.js
700
B
-rw-r--r--
constant.js
29
B
-rw-r--r--
cubehelix.js
763
B
-rw-r--r--
date.js
144
B
-rw-r--r--
discrete.js
154
B
-rw-r--r--
hcl.js
550
B
-rw-r--r--
hsl.js
550
B
-rw-r--r--
hue.js
178
B
-rw-r--r--
index.js
1.36
KB
-rw-r--r--
lab.js
450
B
-rw-r--r--
number.js
110
B
-rw-r--r--
numberArray.js
332
B
-rw-r--r--
object.js
393
B
-rw-r--r--
piecewise.js
427
B
-rw-r--r--
quantize.js
163
B
-rw-r--r--
rgb.js
1.27
KB
-rw-r--r--
round.js
122
B
-rw-r--r--
string.js
1.72
KB
-rw-r--r--
value.js
806
B
-rw-r--r--
zoom.js
1.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : string.js
import number from "./number.js"; var reA = /[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g, reB = new RegExp(reA.source, "g"); function zero(b) { return function() { return b; }; } function one(b) { return function(t) { return b(t) + ""; }; } export default function(a, b) { var bi = reA.lastIndex = reB.lastIndex = 0, // scan index for next number in b am, // current match in a bm, // current match in b bs, // string preceding current number in b, if any i = -1, // index in s s = [], // string constants and placeholders q = []; // number interpolators // Coerce inputs to strings. a = a + "", b = b + ""; // Interpolate pairs of numbers in a & b. while ((am = reA.exec(a)) && (bm = reB.exec(b))) { if ((bs = bm.index) > bi) { // a string precedes the next number in b bs = b.slice(bi, bs); if (s[i]) s[i] += bs; // coalesce with previous string else s[++i] = bs; } if ((am = am[0]) === (bm = bm[0])) { // numbers in a & b match if (s[i]) s[i] += bm; // coalesce with previous string else s[++i] = bm; } else { // interpolate non-matching numbers s[++i] = null; q.push({i: i, x: number(am, bm)}); } bi = reB.lastIndex; } // Add remains of b. if (bi < b.length) { bs = b.slice(bi); if (s[i]) s[i] += bs; // coalesce with previous string else s[++i] = bs; } // Special optimization for only a single match. // Otherwise, interpolate each of the numbers and rejoin the string. return s.length < 2 ? (q[0] ? one(q[0].x) : zero(b)) : (b = q.length, function(t) { for (var i = 0, o; i < b; ++i) s[(o = q[i]).i] = o.x(t); return s.join(""); }); }
Close