Rocky_Mountain_Vending/.pnpm-store/v10/files/82/750661acd70195b04ee55772f19e1b57a3cfc6f6e955a0dcbda3428b4011ba711590647adb96f141c5e5cbd8f8ab064f9578fb6c3940688f25a46597b122f8
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

8 lines
378 B
Text

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]);
}