import {Middleware} from "redux";
export const defaultMiddlewares: Middleware[] = [
	() => next => act => {
		if (act && act['toJSON']) {
			act = act['toJSON']();
		}
		return next(act);
	},
];
