()
| 95 | } |
| 96 | |
| 97 | function isAboutVisible() { |
| 98 | const visible = localStorage.getItem(ABOUT_VISIBLE_KEY); |
| 99 | return visible === null ? true : visible === 'true'; |
| 100 | } |
| 101 | |
| 102 | function isFirstUse() { |
| 103 | const firstUse = localStorage.getItem(FIRST_USE_KEY); |
no outgoing calls
no test coverage detected