Skip to content

Commit aff0f05

Browse files
authored
docs(README): add link to mindfront-redux-utils-immutable [ci skip]
1 parent 16db770 commit aff0f05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you use [`combineReducers`](http://redux.js.org/docs/api/combineReducers.html
1010

1111
Imagine you're combining 100 subreducers, and you're dispatching actions from a `mousemove` listener at 60 Hz. That's 6000 subreducer calls per second, and it only increases as you add more slices to your state and corresponding subreducers to your app.
1212

13-
This package and `mindfront-redux-utils-immutable` help you create and combine reducers and middleware in such a way that only the relevant subreducer(s) and middleware for a given action are called, so you don't have to worry that performance will decrease with every subreducer or sub-subreducer (etc) you add.
13+
This package and [`mindfront-redux-utils-immutable`](https://github.com/jcoreio/redux-utils-immutable) help you create and combine reducers and middleware in such a way that only the relevant subreducer(s) and middleware for a given action are called, so you don't have to worry that performance will decrease with every subreducer or sub-subreducer (etc) you add.
1414

1515
## createReducer([initialState: any,] actionHandlers: {[actionType: string]: Reducer}): Reducer
1616
```js

0 commit comments

Comments
 (0)