redux-ignore icon indicating copy to clipboard operation
redux-ignore copied to clipboard

:recycle: higher-order reducer to ignore redux actions

Results 4 redux-ignore issues
Sort by recently updated
recently updated
newest added

- 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...

help wanted