Initial Commit

This commit is contained in:
HPL-JesusCastro
2026-05-26 16:04:14 +08:00
commit 5d6f228224
62 changed files with 10152 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
function parseTitle(html) {
const match = html.match(/<title[^>]*>([^<]*)<\/title>/i);
return match ? match[1].trim() : '';
}
module.exports = { parseTitle };