(x)
| 360 | export function formatOccupancy(s, indent = ' ') { |
| 361 | const o = s.occupancy; |
| 362 | const n = (x) => x.toLocaleString('en-US'); |
| 363 | const pctCtx = (t) => (o.ctxFinal > 0 ? ((t / o.ctxFinal) * 100).toFixed(1) : '0.0'); |
| 364 | const pctWin = (t) => ((t / o.windowTokens) * 100).toFixed(1); |
| 365 | const rows = []; |
no outgoing calls
no test coverage detected