(score: number | undefined)
| 12 | const isTTY = process.stdout.isTTY; |
| 13 | |
| 14 | function getReputationLabel(score: number | undefined): "High" | "Medium" | "Low" | "Unknown" { |
| 15 | if (score === undefined || score < 0) return "Unknown"; |
| 16 | if (score >= 7) return "High"; |
| 17 | if (score >= 4) return "Medium"; |
| 18 | return "Low"; |
| 19 | } |
| 20 | |
| 21 | function getAccessToken(): string | undefined { |
| 22 | const tokens = loadTokens(); |
no outgoing calls
no test coverage detected