Batch redux actions
npm install redux-batch-middleware> Batch Redux actions

Batch middleware for Redux. Inspired by redux-batched-actions.
```
npm install --save redux-batch-middleware
Add as middleware:
`js
import { applyMiddleware, createStore } from 'redux';
import { batch, batching } from 'redux-batch-actions';
import reducers from './reducers';
const middleware = [batch];
const store = applyMiddleware(...middleware)(createStore)(batching(reducers));
`
Dispatch multiple actions:
`js`
store.dispatch([action1, action2]);
Redux middleware which converts a dispatched array of actions to a batch action.
#### reducer
Type: function`
A reducer that should be able to handle batched actions, most likely the root reducer.
The name of the batch type.
MIT