(code: string)
| 15 | } |
| 16 | |
| 17 | export function countryName(code: string): string { |
| 18 | if (code === 'UNKNOWN') { |
| 19 | return 'Unknown' |
| 20 | } |
| 21 | |
| 22 | return /^[A-Z]{2}$/.test(code) ? (REGION_NAMES.of(code) ?? code) : code |
| 23 | } |
| 24 | |
| 25 | export function useLiveStats( |
| 26 | initialStats: FreebuffLiveStats, |
no outgoing calls
no test coverage detected