plane/web/core/components/ui/loader/utils.tsx
2024-06-11 14:39:52 +05:30

7 lines
283 B
TypeScript

export const getRandomInt = (min: number, max: number) => Math.floor(Math.random() * (max - min + 1)) + min;
export const getRandomLength = (lengthArray: string[]) => {
const randomIndex = Math.floor(Math.random() * lengthArray.length);
return `${lengthArray[randomIndex]}`;
};