(project: string)
| 41 | |
| 42 | /* Persist the node budget per project */ |
| 43 | function budgetKey(project: string): string { |
| 44 | return `cbm-node-budget:${project}`; |
| 45 | } |
| 46 | function loadNodeBudget(project: string): number { |
| 47 | try { |
| 48 | const v = localStorage.getItem(budgetKey(project)); |
no outgoing calls
no test coverage detected