(n)
| 12 | const sessionTokens = require('../runtimes/claude-code/adapters/session-tokens'); |
| 13 | |
| 14 | function formatTokens(n) { |
| 15 | if (n >= 1_000_000) return `${(n / 1_000_000).toFixed(1)}M`; |
| 16 | if (n >= 1_000) return `${(n / 1_000).toFixed(1)}K`; |
| 17 | return String(n); |
| 18 | } |
| 19 | |
| 20 | function printSession(label, tokens, cost) { |
| 21 | console.log(`\n ${label}`); |
no outgoing calls
no test coverage detected