()
| 109 | } |
| 110 | |
| 111 | function toggleAboutSection() { |
| 112 | const currentlyVisible = isAboutVisible(); |
| 113 | const newVisibility = !currentlyVisible; |
| 114 | |
| 115 | localStorage.setItem(ABOUT_VISIBLE_KEY, newVisibility.toString()); |
| 116 | updateAboutSectionDisplay(); |
| 117 | |
| 118 | } |
| 119 | |
| 120 | function updateAboutSectionDisplay() { |
| 121 | const visible = isAboutVisible(); |
nothing calls this directly
no test coverage detected