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.
session-desktop/ts/util/getInitials.ts

19 lines
319 B
TypeScript

export function getInitials(name?: string): string | undefined {
if (!name || !name.length) {
return;
}
if (name.length > 2 && name.startsWith('05')) {
return name[2];
}
const initials = name
.split(' ')
.slice(0, 2)
.map(n => {
return n[0];
});
return initials.join('');
}