(hostname: Hostname)
| 28 | } |
| 29 | |
| 30 | export function openGitHubIssues(hostname: Hostname) { |
| 31 | const url = new URL(`https://${hostname}`); |
| 32 | url.pathname = 'issues'; |
| 33 | openExternalLink(url.toString() as Link); |
| 34 | } |
| 35 | |
| 36 | export function openGitHubPulls(hostname: Hostname) { |
| 37 | const url = new URL(`https://${hostname}`); |
no test coverage detected