const someEpic = ( action$, store, ) => ( action$ .pipe( ofType(FETCH_DATA), switchMap(() => ( ajax('/data') .pipe( tap(() => store.dispatch(doSomething())) map(fetchSucceeded) ) ) ) )