(instance: any)
| 220 | } |
| 221 | |
| 222 | export function isComponentInstance(instance: any): boolean { |
| 223 | return instance && instance.constructor && instance.constructor.ɵcmp; |
| 224 | } |
| 225 | |
| 226 | export function isDirectiveInstance(instance: any): boolean { |
| 227 | return instance && instance.constructor && instance.constructor.ɵdir; |
no outgoing calls
no test coverage detected
searching dependent graphs…