(target: any)
| 212 | } |
| 213 | |
| 214 | export function readPatchedLView<T>(target: any): LView<T> | null { |
| 215 | const value = readPatchedData(target); |
| 216 | if (value) { |
| 217 | return (isLView(value) ? value : value.lView) as LView<T>; |
| 218 | } |
| 219 | return null; |
| 220 | } |
| 221 | |
| 222 | export function isComponentInstance(instance: any): boolean { |
| 223 | return instance && instance.constructor && instance.constructor.ɵcmp; |
no test coverage detected
searching dependent graphs…