Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
yanggyein
/
yanggyein
/
yang_ai
/
node_modules
/
rework-visit
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/yanggyein/yanggyein/yang_ai/node_modules/rework-visit/index.js
/** * 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); }); };