(id: string | null | undefined)
| 85 | const oc2Theme = oc2ThemeJson as DesktopTheme |
| 86 | |
| 87 | function normalize(id: string | null | undefined) { |
| 88 | return id === "oc-1" ? "oc-2" : id |
| 89 | } |
| 90 | |
| 91 | function read(key: string) { |
| 92 | if (typeof localStorage !== "object") return null |
no outgoing calls
no test coverage detected