(value: any)
| 708 | } |
| 709 | |
| 710 | function hasOnDestroy(value: any): value is OnDestroy { |
| 711 | return ( |
| 712 | value !== null && |
| 713 | typeof value === 'object' && |
| 714 | typeof (value as OnDestroy).ngOnDestroy === 'function' |
| 715 | ); |
| 716 | } |
| 717 | |
| 718 | function couldBeInjectableType(value: any): value is ProviderToken<any> { |
| 719 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…