Skip to content

Instantly share code, notes, and snippets.

View eXon's full-sized avatar

Benoit Tremblay eXon

View GitHub Profile
@eXon
eXon / createReducer.js
Last active May 12, 2017 19:50 — forked from alexbrillant/reducer.js
Alex - reducer.js
export default function createReducer(initialState, actions) {
return function reducer(state = initialState, action) {
const actionReducer = actions[action.type];
if (!actionReducer) {
return state;
}
return actionReducer(state, action);
};
}