(value: DevAppState)
| 74 | } |
| 75 | |
| 76 | function saveToStorage(value: DevAppState): void { |
| 77 | // Needs a try/catch since some browsers throw an error when accessing in incognito. |
| 78 | try { |
| 79 | localStorage.setItem(KEY, JSON.stringify(value)); |
| 80 | } catch {} |
| 81 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…