Last active
September 12, 2020 17:48
-
-
Save zachgoll/cf6e021e49d3192ec10ebf052af1d87e to your computer and use it in GitHub Desktop.
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
// Note: The "$" is a convention that is used to denote an Observable variable type and does nothing than add styling | |
outerObs$.pipe(switchMap( | |
(outerObservableValue) => { | |
return innerObservable$.pipe( | |
map((innerObservableValue) => { | |
return | |
}) | |
); | |
} | |
)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment