(key: string, value: number)
| 36 | return fallback; |
| 37 | } |
| 38 | function saveWidth(key: string, value: number) { |
| 39 | try { localStorage.setItem(key, String(Math.round(value))); } catch { /* ignore */ } |
| 40 | } |
| 41 | |
| 42 | /* Persist the node budget per project */ |
| 43 | function budgetKey(project: string): string { |