EVA-Notify/src/utils/random.ts

4 lines
134 B
TypeScript

export const randomInt = (floor: number, ceiling: number) => {
return Math.floor(Math.random() * (ceiling - floor + 1) + floor);
};