(config, options, dispatch)
| 198 | } |
| 199 | |
| 200 | async function request(config, options, dispatch) { |
| 201 | return ( |
| 202 | tryGetFromCache(config, options, dispatch) || |
| 203 | executeRequest(config, dispatch) |
| 204 | ) |
| 205 | } |
| 206 | |
| 207 | function useAxios(_config, _options) { |
| 208 | const config = React.useMemo( |
no test coverage detected
searching dependent graphs…