redux-ignore
redux-ignore copied to clipboard
:recycle: higher-order reducer to ignore redux actions
- Update build tools - Remove unused redux dependency - Use `Set.has` instead of `Array.indexOf` (performance)
following is an filter function ``` import { filterActions } from 'redux-ignore' const filter = (reducer, moduleName) => { console.log(moduleName) const reg = new RegExp(`^${moduleName}`) return filterActions(reducer, action => action...
I'm trying to implement a deep merging of initial state of application and predefined state received from local storage or server with `combineReducers` like it's [proposed by **gaeron**](https://github.com/reactjs/redux/issues/433#issuecomment-220124645). Consider the...