(value: any)
| 99 | } |
| 100 | |
| 101 | export function isNgModuleType(value: any): value is Type<unknown> { |
| 102 | // NgModule class should have the `ɵmod` static property attached by AOT or JIT compiler. |
| 103 | return isFunction(value) && !!value[ɵNG_MOD_DEF]; |
| 104 | } |
| 105 | |
| 106 | function isParentNode(node: Node | ParentNode): node is ParentNode { |
| 107 | return isFunction((node as unknown as ParentNode).querySelectorAll); |
nothing calls this directly
no test coverage detected
searching dependent graphs…