(obj: any | Subscribable<T>)
| 21 | * Determine if the argument is a Subscribable |
| 22 | */ |
| 23 | export function isSubscribable<T>(obj: any | Subscribable<T>): obj is Subscribable<T> { |
| 24 | return !!obj && typeof obj.subscribe === 'function'; |
| 25 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…