(link: { link?: string })
| 32 | } |
| 33 | |
| 34 | export function isExternal(link: { link?: string }) { |
| 35 | return (link.link?.startsWith("https://") || link.link?.startsWith("http://")) ?? false; |
| 36 | } |
| 37 | |
| 38 | export function isLocalizedLink(link: { link?: string }) { |
| 39 | for (const code of KNOWN_LANGUAGE_CODES) { |
no outgoing calls
no test coverage detected
searching dependent graphs…