1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/client/helpers/random.ts
2019-11-24 23:09:38 +07:00

3 lines
99 B
TypeScript

const random = (min, max) => min + Math.round(Math.random() * (max - min));
export default random;