Skip to content

Instantly share code, notes, and snippets.

@ViktorReib
ViktorReib / generateAavatar.js
Created January 8, 2022 10:23
Generate Gravatar or default to Initials Avatar
class Avatar {
colors = ['#F59C0F', '#009FD4', '#B381B3', '#E3BC00', '#D47500', '#DC2A2A', '#0027D7', "#00B4FF", "#107C10"];
getInitials(fullName: string): string {
// remove domain if exists
if (fullName.lastIndexOf('@') > 0) {
fullName = fullName.substring(0, fullName.lastIndexOf('@'));
}