Improvements to the media editor
This commit is contained in:
9
ts/util/isAciString.ts
Normal file
9
ts/util/isAciString.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
// Copyright 2023 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { AciString } from '../types/ServiceId';
|
||||
import { isValidUuid } from './isValidUuid';
|
||||
|
||||
export function isAciString(value?: string | null): value is AciString {
|
||||
return isValidUuid(value);
|
||||
}
|
Reference in New Issue
Block a user