Skip to content

Instantly share code, notes, and snippets.

@srph
Last active November 18, 2018 22:17
Show Gist options
  • Save srph/d21df59ff0a0aacca34237f489ab1767 to your computer and use it in GitHub Desktop.
Save srph/d21df59ff0a0aacca34237f489ab1767 to your computer and use it in GitHub Desktop.
JS: Generate avatar initials from name
export default function(organizationName: string) {
const [f, l]: string[] = organizationName.split(' ')
return [f.charAt(0).toUpperCase(), (l || '').charAt(0).toUpperCase()].join('')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment