(state, action)
| 15144 | } |
| 15145 | |
| 15146 | function basicStateReducer(state, action) { |
| 15147 | // $FlowFixMe: Flow doesn't like mixed types |
| 15148 | return typeof action === 'function' ? action(state) : action; |
| 15149 | } |
| 15150 | |
| 15151 | function mountReducer(reducer, initialArg, init) { |
| 15152 | var hook = mountWorkInProgressHook(); |
nothing calls this directly
no outgoing calls
no test coverage detected