Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
716cf56cb2.url-de-test.ws
/
htdocs
/
node_modules
/
csso
/
lib
/
clean
/
/srv/data/web/vhosts/716cf56cb2.url-de-test.ws/htdocs/node_modules/csso/lib/clean/index.js
import { walk } from 'css-tree'; import Atrule from './Atrule.js'; import Comment from './Comment.js'; import Declaration from './Declaration.js'; import Raw from './Raw.js'; import Rule from './Rule.js'; import TypeSelector from './TypeSelector.js'; import WhiteSpace from './WhiteSpace.js'; const handlers = { Atrule, Comment, Declaration, Raw, Rule, TypeSelector, WhiteSpace }; export default function(ast, options) { walk(ast, { leave(node, item, list) { if (handlers.hasOwnProperty(node.type)) { handlers[node.type].call(this, node, item, list, options); } } }); };