(index: number)
| 102 | ]; |
| 103 | |
| 104 | export function getUserColor(index: number): string { |
| 105 | return USER_COLORS[index % USER_COLORS.length]; |
| 106 | } |
| 107 | |
| 108 | export function getInitials(name: string): string { |
| 109 | return name |
nothing calls this directly
no outgoing calls
no test coverage detected