signal-desktop/ts/util/isInSystemContacts.ts
2023-03-22 12:25:52 -07:00

19 lines
523 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export const isInSystemContacts = ({
type,
name,
systemGivenName,
systemFamilyName,
}: Readonly<{
type?: string;
name?: string;
systemGivenName?: string;
systemFamilyName?: string;
}>): boolean =>
// `direct` for redux, `private` for models and the database
(type === 'direct' || type === 'private') &&
(typeof name === 'string' ||
typeof systemGivenName === 'string' ||
typeof systemFamilyName === 'string');