You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export function getInitials(name?: string): string | undefined {
|
|
if (!name || !name.length) {
|
|
return;
|
|
}
|
|
|
|
if (name.length > 2 && name.startsWith('05')) {
|
|
return name[2];
|
|
}
|
|
|
|
return name[0];
|
|
}
|