(element, visit)
| 3235 | } |
| 3236 | |
| 3237 | function visitDescendants(element, visit) { |
| 3238 | if (element.children) { |
| 3239 | element.children.forEach(function(child) { |
| 3240 | visitDescendants(child, visit); |
| 3241 | visit(child); |
| 3242 | }); |
| 3243 | } |
| 3244 | } |
| 3245 | |
| 3246 | },{"underscore":153}],30:[function(require,module,exports){ |
| 3247 | var htmlPaths = require("./styles/html-paths"); |