(actionCreator, dispatch)
| 21176 | exports.__esModule = true; |
| 21177 | exports['default'] = bindActionCreators; |
| 21178 | function bindActionCreator(actionCreator, dispatch) { |
| 21179 | return function () { |
| 21180 | return dispatch(actionCreator.apply(undefined, arguments)); |
| 21181 | }; |
| 21182 | } |
| 21183 | |
| 21184 | /** |
| 21185 | * Turns an object whose values are action creators, into an object with the |
no test coverage detected