mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
10 lines
300 B
TypeScript
10 lines
300 B
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type { AciString } from '../types/ServiceId.std.js';
|
|
import { isValidUuid } from './isValidUuid.std.js';
|
|
|
|
export function isAciString(value?: string | null): value is AciString {
|
|
return isValidUuid(value);
|
|
}
|