mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
export const getInitials = (name: string) => {
|
|
// max 2 initials
|
|
const initials = name.split(" ").slice(0, 2);
|
|
return initials.map((initial) => initial[0]).join("");
|
|
};
|