Skip to content

Instantly share code, notes, and snippets.

@jschwarty
Last active March 30, 2017 22:41
Show Gist options
  • Save jschwarty/8c364bce27ae9ed1eae990587af27bf2 to your computer and use it in GitHub Desktop.
Save jschwarty/8c364bce27ae9ed1eae990587af27bf2 to your computer and use it in GitHub Desktop.
Function to create initials from a list of strings.
export function buildInitials(...fields: string[]) {
return fields.reduce((acc, val) => {
acc += val.length > 0 ? val[0] : '';
return acc.toUpperCase();
}, '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment