UNPKG

jsx-view

Version:

Minimal JSX for HTML DOM tightly integrated with RxJS. TypeScript definitions, and attributes can be assigned to observables.

7 lines (5 loc) 174 B
import { isObservable } from "rxjs" import type { Observable } from "rxjs" export function isObservableUnchecked<T>(x: any): x is Observable<T> { return isObservable(x) }