function computeName()

in web/rv-reviewer.ts [71:76]


function computeName(account: AccountInfo): string | undefined {
  if (account.email) {
    return `${account.name} <${account.email}>`;
  }
  return account.name;
}