(action)
| 11 | const store = createStore(reducer, preloadedState, enhancer) |
| 12 | const origDispatch = store.dispatch |
| 13 | const dispatch = (action) => { |
| 14 | const a = action.action || action |
| 15 | globalContext[KEY][LIB_NAME].push(a) |
| 16 | return origDispatch(action) |
| 17 | } |
| 18 | return Object.assign(store, { dispatch: dispatch }) |
| 19 | } |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected