Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
graphemer /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
Graphemer.d.ts
1.36
KB
-rw-rw-rw-
Graphemer.d.ts.map
575
B
-rw-rw-rw-
Graphemer.js
767.59
KB
-rw-rw-rw-
GraphemerHelper.d.ts
1.23
KB
-rw-rw-rw-
GraphemerHelper.d.ts.map
520
B
-rw-rw-rw-
GraphemerHelper.js
6.53
KB
-rw-rw-rw-
GraphemerIterator.d.ts
610
B
-rw-rw-rw-
GraphemerIterator.d.ts.map
424
B
-rw-rw-rw-
GraphemerIterator.js
1.05
KB
-rw-rw-rw-
boundaries.d.ts
1005
B
-rw-rw-rw-
boundaries.d.ts.map
471
B
-rw-rw-rw-
boundaries.js
1.91
KB
-rw-rw-rw-
index.d.ts
98
B
-rw-rw-rw-
index.d.ts.map
154
B
-rw-rw-rw-
index.js
316
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : GraphemerIterator.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * GraphemerIterator * * Takes a string and a "BreakHandler" method during initialisation * and creates an iterable object that returns individual graphemes. * * @param str {string} * @return GraphemerIterator */ class GraphemerIterator { constructor(str, nextBreak) { this._index = 0; this._str = str; this._nextBreak = nextBreak; } [Symbol.iterator]() { return this; } next() { let brk; if ((brk = this._nextBreak(this._str, this._index)) < this._str.length) { const value = this._str.slice(this._index, brk); this._index = brk; return { value: value, done: false }; } if (this._index < this._str.length) { const value = this._str.slice(this._index); this._index = this._str.length; return { value: value, done: false }; } return { value: undefined, done: true }; } } exports.default = GraphemerIterator;
Close