Created
November 11, 2019 20:51
-
-
Save evgenyfedorenko/0ad3c55cf6ddf671a0412cfc5628afa3 to your computer and use it in GitHub Desktop.
This file contains 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
function reduceState(stateActionPair = { state: undefined }, [action, reducer]) { | |
const { state } = stateActionPair; | |
return { state: reducer(state, action), action }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment