One Hat Cyber Team
Your IP :
216.73.217.131
Server IP :
185.33.55.30
Server :
Linux cl30.webspacecontrol.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.1.34
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
esetkocsi
/
www
/
node_modules
/
svgo
/
plugins
/
View File Name :
removeComments.js
'use strict'; const { detachNodeFromParent } = require('../lib/xast.js'); exports.name = 'removeComments'; exports.type = 'visitor'; exports.active = true; exports.description = 'removes comments'; /** * Remove comments. * * @example * <!-- Generator: Adobe Illustrator 15.0.0, SVG Export * Plug-In . SVG Version: 6.00 Build 0) --> * * @author Kir Belevich * * @type {import('../lib/types').Plugin<void>} */ exports.fn = () => { return { comment: { enter: (node, parentNode) => { if (node.value.charAt(0) !== '!') { detachNodeFromParent(node, parentNode); } }, }, }; };