Gazebo_simulation-Frontend/node_modules/rxjs/_esm2015/internal/util/isObservable.js

5 lines
246 B
JavaScript
Raw Normal View History

2020-12-21 11:29:31 -04:00
import { Observable } from '../Observable';
export function isObservable(obj) {
return !!obj && (obj instanceof Observable || (typeof obj.lift === 'function' && typeof obj.subscribe === 'function'));
}
//# sourceMappingURL=isObservable.js.map