mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 05:49:40 +02:00
7 lines
283 B
TypeScript
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]}`;
|
|
};
|