()
| 19 | }; |
| 20 | |
| 21 | function LocalStorageManager() { |
| 22 | this.bestScoreKey = "bestScore"; |
| 23 | this.gameStateKey = "gameState"; |
| 24 | |
| 25 | var supported = this.localStorageSupported(); |
| 26 | this.storage = supported ? window.localStorage : window.fakeStorage; |
| 27 | } |
| 28 | |
| 29 | LocalStorageManager.prototype.localStorageSupported = function () { |
| 30 | var testKey = "test"; |
nothing calls this directly
no outgoing calls
no test coverage detected