()
| 46 | } |
| 47 | |
| 48 | function readLayout() { |
| 49 | try { return JSON.parse(localStorage.getItem(LAYOUT_KEY) || '{}'); } |
| 50 | catch (e) { return {}; } |
| 51 | } |
| 52 | function writeLayout(layout) { |
| 53 | localStorage.setItem(LAYOUT_KEY, JSON.stringify(layout || {})); |
| 54 | } |
no outgoing calls
no test coverage detected