Skip to content

Commit 418551f

Browse files
author
Sergio Daniel Xalambrí
committed
[update] remove usage of const and just export the anonymous function
1 parent bdc34b2 commit 418551f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
const catchMiddleware = errorHandler => (store) => next => action => {
1+
export default errorHandler => (store) => next => action => {
22
try {
33
return next(action);
44
} catch (error) {
55
errorHandler(error, store.getState);
66
return error;
77
}
88
};
9-
10-
export default catchMiddleware;

0 commit comments

Comments
 (0)