(key: string, value: string)
| 22 | } |
| 23 | |
| 24 | function setItem(key: string, value: string): void { |
| 25 | if (isLocalStorageEnabled()) { |
| 26 | localStorage.setItem(key, value); |
| 27 | } else { |
| 28 | inMemoryStorage[key] = value; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | function removeItem(key: string): void { |
| 33 | if (isLocalStorageEnabled()) { |
nothing calls this directly
no test coverage detected