![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/rework-visit/ |
/** * Expose `visit()`. */ module.exports = visit; /** * Visit `node`'s declarations recursively and * invoke `fn(declarations, node)`. * * @param {Object} node * @param {Function} fn * @api private */ function visit(node, fn){ node.rules.forEach(function(rule){ // @media etc if (rule.rules) { visit(rule, fn); return; } // keyframes if (rule.keyframes) { rule.keyframes.forEach(function(keyframe){ fn(keyframe.declarations, rule); }); return; } // @charset, @import etc if (!rule.declarations) return; fn(rule.declarations, node); }); };