Skip to content

Instantly share code, notes, and snippets.

@vkarpov15
Created September 10, 2018 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vkarpov15/d431b181dfe71f696d55fb4bf2f5096b to your computer and use it in GitHub Desktop.
Save vkarpov15/d431b181dfe71f696d55fb4bf2f5096b to your computer and use it in GitHub Desktop.
const { createEpicMiddleware } = require('redux-observable');
const { catchError, filter, mergeMap } = require('rxjs/operators');
const redux = require('redux');
const startTime = Date.now();
const countEpic = action$ => action$.pipe(
filter(action => action.type === 'CLICK_INCREMENT'),
mergeMap(async () => {
throw new Error('Oops!');
}),
catchError(err => Promise.resolve({ type: 'Error', message: err.message }))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment