Skip to content

Instantly share code, notes, and snippets.

@Sawtaytoes
Created October 16, 2019 07:33
Show Gist options
  • Save Sawtaytoes/e28cb2df42f878ae9022bc1851a4cdfa to your computer and use it in GitHub Desktop.
Save Sawtaytoes/e28cb2df42f878ae9022bc1851a4cdfa to your computer and use it in GitHub Desktop.
const someEpic = (
action$,
) => (
action$
.pipe(
ofType(FETCH_DATA),
switchMap(() => (
ajax('/data')
.pipe(
switchMap((
response,
) => (
of(
doSomething(),
fetchSucceeded(response),
)
)),
)
)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment