UNPKG

195 BPlain TextView Raw
1import {Middleware} from "redux";
2export const defaultMiddlewares: Middleware[] = [
3 () => next => act => {
4 if (act && act['toJSON']) {
5 act = act['toJSON']();
6 }
7 return next(act);
8 },
9];