7 lines
246 B
TypeScript
7 lines
246 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { BadgeType } from './types';
|
|
|
|
export const isBadgeVisible = (badge: Readonly<BadgeType>): boolean =>
|
|
'isVisible' in badge ? badge.isVisible : true;
|