One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
9611
/
root
/
usr
/
share
/
nodejs
/
parse5
/
lib
/
View File Name :
index.js
'use strict'; const Parser = require('./parser'); const Serializer = require('./serializer'); // Shorthands exports.parse = function parse(html, options) { const parser = new Parser(options); return parser.parse(html); }; exports.parseFragment = function parseFragment(fragmentContext, html, options) { if (typeof fragmentContext === 'string') { options = html; html = fragmentContext; fragmentContext = null; } const parser = new Parser(options); return parser.parseFragment(html, fragmentContext); }; exports.serialize = function(node, options) { const serializer = new Serializer(node, options); return serializer.serialize(); };