mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-21 03:12:19 -05:00
Files
18 lines
416 B
JavaScript
18 lines
416 B
JavaScript
export const initials = {
|
|||
computed: {
|
|||
initials() {
|
|||
const allNames = this.user.fullName.trim().split(" ");
|
|||
const initials = allNames.reduce(
|
|||
(acc, curr, index) => {
|
|||
if (index === 0 || index === allNames.length - 1) {
|
|||
acc = `${acc}${curr.charAt(0).toUpperCase()}`;
|
|||
}
|
|||
return acc;
|
|||
},
|
|||
[""]
|
|||
);
|
|||
return initials;
|
|||
},
|
|||
},
|
|||
};
|