Created
October 16, 2019 07:37
-
-
Save Sawtaytoes/64c2e76f2622662d94e5b2262eaca316 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const epic$ = ( | |
new BehaviorSubject( | |
rootEpic | |
.pipe( | |
switchMap(( | |
value, | |
) => ( | |
typeof value === 'object' | |
&& value.type | |
? of(value) | |
: EMPTY | |
)) | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment