Files
SolTube/packages/core-utils/src/common/random.ts
ShreejitPanchal 6601501eff Init commit
2026-05-19 19:56:02 +08:00

5 lines
131 B
TypeScript

// high excluded
export function randomInt (low: number, high: number) {
return Math.floor(Math.random() * (high - low) + low)
}