| Path : /var/www/html/phkaymedia/vendor/livewire/livewire/js/util/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //var/www/html/phkaymedia/vendor/livewire/livewire/js/util/walk.js |
// A little DOM-tree walker.
// (TreeWalker won't do because I need to conditionaly ignore sub-trees using the callback)
export function walk(root, callback) {
if (callback(root) === false) return
let node = root.firstElementChild
while (node) {
walk(node, callback)
node = node.nextElementSibling
}
}