TenantAtlas/apps/platform/.pnpm-store/v10/files/ee/05a969e2dd930e2644079464237c21a67f462dc42a38c28406d33c51d18df38aab10f23c26b9c6fd2595b76be47c71c95ea7fb5e5dc097488548f13b4f6f31
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

6 lines
269 B
Plaintext

import { Observable } from '../Observable';
import { isFunction } from './isFunction';
export function isObservable(obj) {
return !!obj && (obj instanceof Observable || (isFunction(obj.lift) && isFunction(obj.subscribe)));
}
//# sourceMappingURL=isObservable.js.map