| 18 | const WHITESPACE_REGEX = /\s+/; |
| 19 | |
| 20 | interface ProfileCardProps { |
| 21 | avatarUrl: string; |
| 22 | badgeTitle: string; |
| 23 | description: string; |
| 24 | isRetroAvatar: boolean; |
| 25 | name: string; |
| 26 | safeGithubUrl: string; |
| 27 | safeXUrl: string; |
| 28 | } |
| 29 | |
| 30 | function getInitials(name: string) { |
| 31 | if (!name) { |
nothing calls this directly
no outgoing calls
no test coverage detected