Skip to content

Instantly share code, notes, and snippets.

@jacobp100
Last active October 7, 2016 20:22
Show Gist options
  • Select an option

  • Save jacobp100/7d9d78ff64e4b75dbc11769c0ea08c0d to your computer and use it in GitHub Desktop.

Select an option

Save jacobp100/7d9d78ff64e4b75dbc11769c0ea08c0d to your computer and use it in GitHub Desktop.
const reducerMiddleware = (reducer, initialState) => store => {
let state = initialState;
store.getState = () => state;
return () => (action) => { state = reducer(state, action); };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment