Created
February 15, 2017 19:19
-
-
Save TimCodes/17ee6df2fa3c93dc1df8342907cff05d to your computer and use it in GitHub Desktop.
Revisions
-
TimCodes created this gist
Feb 15, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ const combineReducers = (reducers) => { return (state = {}, action) => { return Object.keys(reducers).reduce( (nextState, key) => { nextState[key] = reducers[key]( state[key], action ); return nextState; }, {} ); }; };