Skip to content

Instantly share code, notes, and snippets.

@Nicktho
Created April 6, 2016 02:08
Show Gist options
  • Save Nicktho/cf1ac2bc79735e218126a05f1dc8e8c5 to your computer and use it in GitHub Desktop.
Save Nicktho/cf1ac2bc79735e218126a05f1dc8e8c5 to your computer and use it in GitHub Desktop.
export function combineReducers(reducers) {
return (oldState, action) => {
return Object.keys(reducers).reduce((newState, key) => {
const reducer = reducers[key];
newState[key] = reducer(oldState[key], action);
return newState;
}, {});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment