source:
trip-planner-front/node_modules/rxjs/_esm2015/internal/util/isObservable.js@
571e0df
Last change on this file since 571e0df was 6a3a178, checked in by , 3 years ago | |
---|---|
|
|
File size: 246 bytes |
Line | |
---|---|
1 | import { Observable } from '../Observable'; |
2 | export function isObservable(obj) { |
3 | return !!obj && (obj instanceof Observable || (typeof obj.lift === 'function' && typeof obj.subscribe === 'function')); |
4 | } |
5 | //# sourceMappingURL=isObservable.js.map |
Note:
See TracBrowser
for help on using the repository browser.