(fullName)
| 5 | } |
| 6 | |
| 7 | export function parseFullName(fullName) { |
| 8 | const [, owner, repository] = fullName.match(/^([^/]*)(?:\/(.*))?/); |
| 9 | return {owner, repository}; |
| 10 | } |
| 11 | |
| 12 | export async function isNotificationTargetPage(url) { |
| 13 | const urlObject = new URL(url); |
no outgoing calls
no test coverage detected