Files
Desktop/ts/test-helpers/getRandomColor.std.ts
2026-03-12 16:24:01 -07:00

14 lines
435 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import lodash from 'lodash';
import type { AvatarColorType } from '../types/Colors.std.js';
import { AvatarColors } from '../types/Colors.std.js';
const { sample } = lodash;
export function getRandomColor(): AvatarColorType {
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
return sample(AvatarColors) || AvatarColors[0]!;
}