(state = {})
| 29 | } |
| 30 | |
| 31 | function getPanelMode(state = {}) { |
| 32 | return state.panelMode === 'sub2api' ? 'sub2api' : 'cpa'; |
| 33 | } |
| 34 | |
| 35 | function getPanelModeLabel(modeOrState) { |
| 36 | const mode = typeof modeOrState === 'string' ? modeOrState : getPanelMode(modeOrState); |
no outgoing calls
no test coverage detected