Skip to content

Instantly share code, notes, and snippets.

@woshi82
Created November 30, 2016 06:21
Show Gist options
  • Save woshi82/a57d21a655e870cb330f719661692bcb to your computer and use it in GitHub Desktop.
Save woshi82/a57d21a655e870cb330f719661692bcb to your computer and use it in GitHub Desktop.
'use strict';
export default createReducer(initialState, handlers) {
return function reducer(state = initialState, action) {
if (handlers.hasOwnProperty(action.type)) {
return handlers[action.type](state, action);
} else {
return state;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment