mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 12:32:34 +10:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
export const initials = (text: string) =>
|
|
text
|
|
?.split(' ')
|
|
.map((name: string) => name.slice(0, 1).toUpperCase())
|
|
.slice(0, 2)
|
|
.join('');
|