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 /
yaml /
dist /
parse /
[ HOME SHELL ]
Name
Size
Permission
Action
cst-scalar.d.ts
3.45
KB
-rw-r--r--
cst-scalar.js
9.16
KB
-rw-r--r--
cst-stringify.d.ts
313
B
-rw-r--r--
cst-stringify.js
1.76
KB
-rw-r--r--
cst-visit.d.ts
2.21
KB
-rw-r--r--
cst-visit.js
3.89
KB
-rw-r--r--
cst.d.ts
3.39
KB
-rw-r--r--
cst.js
3.17
KB
-rw-r--r--
lexer.d.ts
2.86
KB
-rw-r--r--
lexer.js
23.51
KB
-rw-r--r--
line-counter.d.ts
733
B
-rw-r--r--
line-counter.js
1.41
KB
-rw-r--r--
parser.d.ts
2.49
KB
-rw-r--r--
parser.js
33.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : line-counter.d.ts
/** * Tracks newlines during parsing in order to provide an efficient API for * determining the one-indexed `{ line, col }` position for any offset * within the input. */ export declare class LineCounter { lineStarts: number[]; /** * Should be called in ascending order. Otherwise, call * `lineCounter.lineStarts.sort()` before calling `linePos()`. */ addNewLine: (offset: number) => number; /** * Performs a binary search and returns the 1-indexed { line, col } * position of `offset`. If `line === 0`, `addNewLine` has never been * called or `offset` is before the first known newline. */ linePos: (offset: number) => { line: number; col: number; }; }
Close