2015-12-29 00:34:32 +01:00

10 lines
215 B
JavaScript

export default function createSocketMiddleware(socket) {
return () => next => action => {
if (action.socket) {
socket.send(action.socket.type, action.socket.data);
}
return next(action);
};
}