@ngxs/store 3.7.5-dev.master-17a1bb8 → 3.7.5-dev.master-f744ab5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3045,7 +3045,7 @@
3045
3045
  if (result instanceof Promise) {
3046
3046
  result = rxjs.from(result);
3047
3047
  }
3048
- if (result instanceof rxjs.Observable) {
3048
+ if (rxjs.isObservable(result)) {
3049
3049
  // If this observable has been completed w/o emitting
3050
3050
  // any value then we wouldn't want to complete the whole chain
3051
3051
  // of actions. Since if any observable completes then
@@ -3062,7 +3062,7 @@
3062
3062
  if (value instanceof Promise) {
3063
3063
  return rxjs.from(value);
3064
3064
  }
3065
- if (value instanceof rxjs.Observable) {
3065
+ if (rxjs.isObservable(value)) {
3066
3066
  return value;
3067
3067
  }
3068
3068
  return rxjs.of(value);