mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 13:26:07 +00:00
11 lines
231 B
JavaScript
11 lines
231 B
JavaScript
|
export default function(el, name) {
|
||
|
let sibling = el;
|
||
|
while ((sibling = sibling.nextSibling)) {
|
||
|
if (sibling.nodeType === 1) {
|
||
|
if (sibling.nodeName.toLowerCase() === name) {
|
||
|
return sibling;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|