-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(store): replace
exhaustMap
(#2254)
In this commit, we replace `exhaustMap` with `mergeMap`. `exhaustMap` might not even be used by developers who consume NGXS, so there’s no reason to bundle it. `exhaustMap` would only make sense if the inner observable emitted asynchronously, but the inner observable either completes, synchronously emits `getValue()`, or throws an error.
- Loading branch information
Showing
2 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters