mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 10:46:13 +02:00
2 lines
99 B
TypeScript
2 lines
99 B
TypeScript
export const random = (min: number, max: number) => min + Math.round(Math.random() * (max - min));
|