frontend/.pnpm-store/v3/files/82/750661acd70195b04ee55772f19e1b57a3cfc6f6e955a0dcbda3428b4011ba711590647adb96f141c5e5cbd8f8ab064f9578fb6c3940688f25a46597b122f8

9 lines
378 B
Plaintext

import { InteropObservable } from '../types';
import { observable as Symbol_observable } from '../symbol/observable';
import { isFunction } from './isFunction';
/** Identifies an input as being Observable (but not necessary an Rx Observable) */
export function isInteropObservable(input: any): input is InteropObservable<any> {
return isFunction(input[Symbol_observable]);
}