mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
19 lines
388 B
TypeScript
19 lines
388 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class InitialsService {
|
|
|
|
constructor() { }
|
|
|
|
getInitials(name:string){
|
|
let names = name.split(' '),
|
|
initials = names[0].substring(0, 1).toUpperCase();
|
|
if (names.length > 1) {
|
|
initials += names[names.length - 1].substring(0, 1).toUpperCase();
|
|
}
|
|
return initials;
|
|
}
|
|
}
|