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 /
nodes /
[ HOME SHELL ]
Name
Size
Permission
Action
Alias.d.ts
1.02
KB
-rw-r--r--
Alias.js
3.34
KB
-rw-r--r--
Collection.d.ts
2.85
KB
-rw-r--r--
Collection.js
5.1
KB
-rw-r--r--
Node.d.ts
2.5
KB
-rw-r--r--
Node.js
1.35
KB
-rw-r--r--
Pair.d.ts
1.24
KB
-rw-r--r--
Pair.js
1.2
KB
-rw-r--r--
Scalar.d.ts
1.62
KB
-rw-r--r--
Scalar.js
759
B
-rw-r--r--
YAMLMap.d.ts
2.35
KB
-rw-r--r--
YAMLMap.js
4.99
KB
-rw-r--r--
YAMLSeq.d.ts
2.47
KB
-rw-r--r--
YAMLSeq.js
3.58
KB
-rw-r--r--
addPairToJSMap.d.ts
240
B
-rw-r--r--
addPairToJSMap.js
2.22
KB
-rw-r--r--
identity.d.ts
1.37
KB
-rw-r--r--
identity.js
1.75
KB
-rw-r--r--
toJS.d.ts
879
B
-rw-r--r--
toJS.js
1.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : toJS.js
'use strict'; var identity = require('./identity.js'); /** * Recursively convert any node or its contents to native JavaScript * * @param value - The input value * @param arg - If `value` defines a `toJSON()` method, use this * as its first argument * @param ctx - Conversion context, originally set in Document#toJS(). If * `{ keep: true }` is not set, output should be suitable for JSON * stringification. */ function toJS(value, arg, ctx) { // eslint-disable-next-line @typescript-eslint/no-unsafe-return if (Array.isArray(value)) return value.map((v, i) => toJS(v, String(i), ctx)); if (value && typeof value.toJSON === 'function') { // eslint-disable-next-line @typescript-eslint/no-unsafe-call if (!ctx || !identity.hasAnchor(value)) return value.toJSON(arg, ctx); const data = { aliasCount: 0, count: 1, res: undefined }; ctx.anchors.set(value, data); ctx.onCreate = res => { data.res = res; delete ctx.onCreate; }; const res = value.toJSON(arg, ctx); if (ctx.onCreate) ctx.onCreate(res); return res; } if (typeof value === 'bigint' && !ctx?.keep) return Number(value); return value; } exports.toJS = toJS;
Close