(value: any)
| 95 | } |
| 96 | |
| 97 | export function isFunction(value: any): value is Function { |
| 98 | return typeof value === 'function'; |
| 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. |
no outgoing calls
no test coverage detected
searching dependent graphs…