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-shape /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
curve
[ DIR ]
drwxr-xr-x
offset
[ DIR ]
drwxr-xr-x
order
[ DIR ]
drwxr-xr-x
symbol
[ DIR ]
drwxr-xr-x
arc.js
8.64
KB
-rw-r--r--
area.js
3.14
KB
-rw-r--r--
areaRadial.js
944
B
-rw-r--r--
array.js
242
B
-rw-r--r--
constant.js
81
B
-rw-r--r--
descending.js
86
B
-rw-r--r--
identity.js
43
B
-rw-r--r--
index.js
3.28
KB
-rw-r--r--
line.js
1.69
KB
-rw-r--r--
lineRadial.js
402
B
-rw-r--r--
link.js
1.79
KB
-rw-r--r--
math.js
492
B
-rw-r--r--
noop.js
29
B
-rw-r--r--
path.js
393
B
-rw-r--r--
pie.js
2.34
KB
-rw-r--r--
point.js
81
B
-rw-r--r--
pointRadial.js
101
B
-rw-r--r--
stack.js
1.39
KB
-rw-r--r--
symbol.js
1.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : line.js
import array from "./array.js"; import constant from "./constant.js"; import curveLinear from "./curve/linear.js"; import {withPath} from "./path.js"; import {x as pointX, y as pointY} from "./point.js"; export default function(x, y) { var defined = constant(true), context = null, curve = curveLinear, output = null, path = withPath(line); x = typeof x === "function" ? x : (x === undefined) ? pointX : constant(x); y = typeof y === "function" ? y : (y === undefined) ? pointY : constant(y); function line(data) { var i, n = (data = array(data)).length, d, defined0 = false, buffer; if (context == null) output = curve(buffer = path()); for (i = 0; i <= n; ++i) { if (!(i < n && defined(d = data[i], i, data)) === defined0) { if (defined0 = !defined0) output.lineStart(); else output.lineEnd(); } if (defined0) output.point(+x(d, i, data), +y(d, i, data)); } if (buffer) return output = null, buffer + "" || null; } line.x = function(_) { return arguments.length ? (x = typeof _ === "function" ? _ : constant(+_), line) : x; }; line.y = function(_) { return arguments.length ? (y = typeof _ === "function" ? _ : constant(+_), line) : y; }; line.defined = function(_) { return arguments.length ? (defined = typeof _ === "function" ? _ : constant(!!_), line) : defined; }; line.curve = function(_) { return arguments.length ? (curve = _, context != null && (output = curve(context)), line) : curve; }; line.context = function(_) { return arguments.length ? (_ == null ? context = output = null : output = curve(context = _), line) : context; }; return line; }
Close