(key: string)
| 30 | } |
| 31 | |
| 32 | function removeItem(key: string): void { |
| 33 | if (isLocalStorageEnabled()) { |
| 34 | localStorage.removeItem(key); |
| 35 | } else { |
| 36 | delete inMemoryStorage[key]; |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | function clear(): void { |
| 41 | if (isLocalStorageEnabled()) { |
nothing calls this directly
no test coverage detected