()
| 145 | |
| 146 | const highScoreKey = '__menja__highScore'; |
| 147 | const getHighScore = () => { |
| 148 | const raw = localStorage.getItem(highScoreKey); |
| 149 | return raw ? parseInt(raw, 10) : 0; |
| 150 | }; |
| 151 | |
| 152 | let _lastHighscore = getHighScore(); |
| 153 | const setHighScore = score => { |
no outgoing calls
no test coverage detected