Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / src / internal / util / isInteropObservable.ts
1 import { InteropObservable } from '../types';
2 import { observable as Symbol_observable } from '../symbol/observable';
3
4 /** Identifies an input as being Observable (but not necessary an Rx Observable) */
5 export function isInteropObservable(input: any): input is InteropObservable<any> {
6   return input && typeof input[Symbol_observable] === 'function';
7 }