MCPcopy Index your code
hub / github.com/angular/angular / skipTextNodes

Function skipTextNodes

packages/core/src/hydration/utils.ts:758–764  ·  view source on GitHub ↗
(node: ChildNode | null)

Source from the content-addressed store, hash-verified

756}
757
758function skipTextNodes(node: ChildNode | null): ChildNode | null {
759 // Ignore whitespace. Before the <body>, we shouldn't find text nodes that aren't whitespace.
760 while (node && node.nodeType === Node.TEXT_NODE) {
761 node = node.previousSibling;
762 }
763 return node;
764}
765
766/**
767 * Verifies whether the DOM contains a special marker added during SSR time to make sure

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…