(hook)
| 85 | } |
| 86 | |
| 87 | function getExtraReducers(hook) { |
| 88 | let ret = {}; |
| 89 | for (const reducerObj of hook) { |
| 90 | ret = { ...ret, ...reducerObj }; |
| 91 | } |
| 92 | return ret; |
| 93 | } |
| 94 | |
| 95 | function getOnReducer(hook) { |
| 96 | return function(reducer) { |
no outgoing calls
no test coverage detected
searching dependent graphs…