MCPcopy Create free account
hub / github.com/docker/getting-started / siblings

Function siblings

app/src/static/js/react-bootstrap.js:9051–9058  ·  view source on GitHub ↗
(container, exclude, cb)

Source from the content-addressed store, hash-verified

9049};
9050
9051var siblings = function siblings(container, exclude, cb) {
9052 exclude = [].concat(exclude);
9053 [].forEach.call(container.children, function (node) {
9054 if (exclude.indexOf(node) === -1 && isHidable(node)) {
9055 cb(node);
9056 }
9057 });
9058};
9059
9060function ariaHidden(show, node) {
9061 if (!node) return;

Callers 2

hideSiblingsFunction · 0.85
showSiblingsFunction · 0.85

Calls 2

isHidableFunction · 0.85
cbFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…