UNPKG

angular2-hmr

Version:

angular2-hmr: Hot Module Replacement for Webpack and Angular 2

7 lines (6 loc) 208 B
export const hmrReducer = (appReducer) => (state, {type, payload}) => { switch (type) { case 'HMR_SET_STATE': return payload; default: return appReducer(state, {type, payload}); } };