(points: number)
| 772 | } |
| 773 | |
| 774 | getTierName(points: number): string { |
| 775 | if (points >= 1500) return 'Pioneer'; |
| 776 | if (points >= 500) return 'Champion'; |
| 777 | if (points >= 100) return 'Connector'; |
| 778 | return 'Explorer'; |
| 779 | } |
| 780 | |
| 781 | // ===================================================== |
| 782 | // DISCOVERY |
no outgoing calls
no test coverage detected