(href)
| 47 | |
| 48 | const baseUrl = getBaseUrl((process.env.LIBRARY as any) || 'react-aria'); |
| 49 | export function getAnchorProps(href) { |
| 50 | if (!/^http/.test(href) || href.startsWith(baseUrl)) { |
| 51 | return {}; |
| 52 | } |
| 53 | |
| 54 | return {target: '_blank', rel: 'noreferrer'}; |
| 55 | } |
| 56 | |
| 57 | const colorLink = style({ |
| 58 | ...focusRing(), |
no outgoing calls
no test coverage detected