(value)
| 475 | } |
| 476 | |
| 477 | function formatTokenNumber(value) { |
| 478 | const numeric = Number(value); |
| 479 | if (!Number.isFinite(numeric)) return "--"; |
| 480 | return Math.round(numeric).toLocaleString("en-US"); |
| 481 | } |
| 482 | |
| 483 | function formatContextWindow(value) { |
| 484 | const numeric = Number(value); |
no outgoing calls
no test coverage detected