Files
aso/frontend/dashboard/src/_mock/funcs.ts
Linksehat Staging Server 70fc1579e7 update
2024-07-12 08:41:18 +07:00

14 lines
403 B
TypeScript
Executable File

// ----------------------------------------------------------------------
export function randomNumber(number: number) {
return Math.floor(Math.random() * number) + 1;
}
export function randomNumberRange(min: number, max: number) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
export function randomInArray(array: any) {
return array[Math.floor(Math.random() * array.length)];
}