()
| 96 | } |
| 97 | |
| 98 | export function readStoredCodeChapter(): string | undefined { |
| 99 | if (!isBrowser()) return undefined |
| 100 | return localStorage.getItem(CODE_CHAPTER_STORAGE_KEY) || undefined |
| 101 | } |
| 102 | |
| 103 | export function readStoredCodeExt(): string | undefined { |
| 104 | if (!isBrowser()) return undefined |
no test coverage detected