* Check if error is rate limit related (API-specific implementation)
(error: any)
| 71 | * Check if error is rate limit related (API-specific implementation) |
| 72 | */ |
| 73 | protected override isRateLimitError(error: any): boolean { |
| 74 | return !!((error && error.status === 429) || error.status == 403); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Gets releases for a GitHub repository |
no outgoing calls
no test coverage detected