mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
export default function collectElements(node, direction) {
|
|
var nextNode = null;
|
|
var nodes = [];
|
|
nextNode = node ? node[direction] : null;
|
|
|
|
while (nextNode && nextNode.nodeType !== 9) {
|
|
nodes.push(nextNode);
|
|
nextNode = nextNode[direction] || null;
|
|
}
|
|
|
|
return nodes;
|
|
} |