NetanelBasal
4/30/2017 - 8:11 PM

reset.ts

export const LOG_OUT = 'LOG_OUT';

export function reset( reducer ) {
  return function newReducer( state, action ) {

    if( action.type === LOG_OUT ) {
      state = undefined;
    }

    const nextState = reducer(state, action);

    return nextState;

  }
}