Last active
November 18, 2018 22:17
-
-
Save srph/d21df59ff0a0aacca34237f489ab1767 to your computer and use it in GitHub Desktop.
JS: Generate avatar initials from name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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