Files
rehearshalhub/web/src/utils.ts
2026-04-08 15:10:52 +02:00

10 lines
187 B
TypeScript
Executable File

// Shared utility functions
export function getInitials(name: string): string {
return name
.split(/\s+/)
.map((w) => w[0])
.join("")
.toUpperCase()
.slice(0, 2);
}