(state = store.state)
| 290 | const soundEnabledSelector = (state = store.state) => state.soundEnabled; |
| 291 | // Whether any sounds are allowed, taking into account multiple factors. |
| 292 | const canPlaySoundSelector = (state = store.state) => isRunning(state) && soundEnabledSelector(state); |
| 293 | // Convert quality to number. |
| 294 | const qualitySelector = () => +store.state.config.quality; |
| 295 | const shellNameSelector = () => store.state.config.shell; |
no test coverage detected