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