()
| 100 | } |
| 101 | |
| 102 | function isFirstUse() { |
| 103 | const firstUse = localStorage.getItem(FIRST_USE_KEY); |
| 104 | return firstUse === null ? true : firstUse === 'true'; |
| 105 | } |
| 106 | |
| 107 | function markFirstUseComplete() { |
| 108 | localStorage.setItem(FIRST_USE_KEY, 'false'); |