(hostname: Hostname)
| 34 | } |
| 35 | |
| 36 | export function openGitHubPulls(hostname: Hostname) { |
| 37 | const url = new URL(`https://${hostname}`); |
| 38 | url.pathname = 'pulls'; |
| 39 | openExternalLink(url.toString() as Link); |
| 40 | } |
| 41 | |
| 42 | export function openAccountProfile(account: Account) { |
| 43 | const url = new URL(`https://${account.hostname}`); |
no test coverage detected