- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
24 lines
438 B
JavaScript
24 lines
438 B
JavaScript
import matches from './matches';
|
|
export default function collectSiblings(node, refNode, selector) {
|
|
if (refNode === void 0) {
|
|
refNode = null;
|
|
}
|
|
|
|
if (selector === void 0) {
|
|
selector = null;
|
|
}
|
|
|
|
var siblings = [];
|
|
|
|
for (; node; node = node.nextElementSibling) {
|
|
if (node !== refNode) {
|
|
if (selector && matches(node, selector)) {
|
|
break;
|
|
}
|
|
|
|
siblings.push(node);
|
|
}
|
|
}
|
|
|
|
return siblings;
|
|
} |