Skip to content

Instantly share code, notes, and snippets.

@sebassdc
Created April 17, 2018 20:03
Show Gist options
  • Save sebassdc/d1a23f87fef355cb93d9228fac4eae33 to your computer and use it in GitHub Desktop.
Save sebassdc/d1a23f87fef355cb93d9228fac4eae33 to your computer and use it in GitHub Desktop.
export default (initialState, actionHandlers) =>
(state = initialState, action) =>
actionHandlers.hasOwnProperty(action.type)
? actionHandlers[action.type](state, action)
: state
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment