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

Function isHidable

app/src/static/js/react-bootstrap.js:9045–9049  ·  view source on GitHub ↗
(_ref)

Source from the content-addressed store, hash-verified

9043var BLACKLIST = ['template', 'script', 'style'];
9044
9045var isHidable = function isHidable(_ref) {
9046 var nodeType = _ref.nodeType,
9047 tagName = _ref.tagName;
9048 return nodeType === 1 && BLACKLIST.indexOf(tagName.toLowerCase()) === -1;
9049};
9050
9051var siblings = function siblings(container, exclude, cb) {
9052 exclude = [].concat(exclude);

Callers 1

siblingsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…