Created
February 15, 2017 19:19
-
-
Save TimCodes/17ee6df2fa3c93dc1df8342907cff05d to your computer and use it in GitHub Desktop.
simplified combine reducers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const combineReducers = (reducers) => { | |
| return (state = {}, action) => { | |
| return Object.keys(reducers).reduce( | |
| (nextState, key) => { | |
| nextState[key] = reducers[key]( | |
| state[key], | |
| action | |
| ); | |
| return nextState; | |
| }, | |
| {} | |
| ); | |
| }; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment