| 15 | }; |
| 16 | |
| 17 | export const getAction = action => { |
| 18 | if (actionList[action]) { |
| 19 | return action; |
| 20 | } |
| 21 | throw new Error(`${action} is not defined.`); |
| 22 | }; |
| 23 | |
| 24 | export const MAX_AUTH_RETRIES = 1; |
no outgoing calls
no test coverage detected
searching dependent graphs…