(name: string)
| 35 | } |
| 36 | }, |
| 37 | remove(name: string): void { |
| 38 | window.localStorage.removeItem(namespacedKey(name)); |
| 39 | }, |
| 40 | clear(): void { |
| 41 | const prefix = namespacedKey(""); |
| 42 | const toRemove: string[] = []; |
nothing calls this directly
no test coverage detected