We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdc34b2 commit 418551fCopy full SHA for 418551f
lib/index.js
@@ -1,10 +1,8 @@
1
-const catchMiddleware = errorHandler => (store) => next => action => {
+export default errorHandler => (store) => next => action => {
2
try {
3
return next(action);
4
} catch (error) {
5
errorHandler(error, store.getState);
6
return error;
7
}
8
};
9
-
10
-export default catchMiddleware;
0 commit comments