git ssb

1+

Matt McKegg / mutant



Tree: c4f4b8e26329eb68faa7079102acbbffaf9679ca

Files: c4f4b8e26329eb68faa7079102acbbffaf9679ca / lib / walk.js

375 bytesRaw
1module.exports = function walk (node, fn) {
2 var current = node
3 while (current) {
4 fn(current)
5 current = nextNode(current, node)
6 }
7}
8
9function nextNode (current, root) {
10 var result = current.firstChild || current.nextSibling
11 if (!result && current.parentNode && current.parentNode !== root) {
12 return current.nextSibling
13 } else {
14 return result
15 }
16}
17

Built with git-ssb-web