Files
aso/frontend/hospital-portal/src/_mock/funcs.ts
Linksehat Staging Server ce024c2bcd merge
2023-05-08 08:50:15 +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)];
}