mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00: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]}`;
|
|
};
|