Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Created October 16, 2019 07:37
Show Gist options
  • Save Sawtaytoes/64c2e76f2622662d94e5b2262eaca316 to your computer and use it in GitHub Desktop.
Save Sawtaytoes/64c2e76f2622662d94e5b2262eaca316 to your computer and use it in GitHub Desktop.
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