| 9 | const MyOctokit = Octokit.plugin(throttling); |
| 10 | |
| 11 | interface Options { |
| 12 | method?: string; |
| 13 | url?: string; |
| 14 | } |
| 15 | |
| 16 | function sortByContributions(a: Contributor, b: Contributor) { |
| 17 | if (a.contributions < b.contributions) return 1; |
nothing calls this directly
no outgoing calls
no test coverage detected