UNPKG
tegro-swap-sdk
Version:
latest (1.5.11)
1.5.11
SDK for building applications on top of Tegro.ag - Swap Aggregator on TON 💎.
tegro-swap-sdk
/
dist
/
utils
/
math.utils.js
2 lines
(1 loc)
•
102 B
JavaScript
View Raw
1
2
export const randomIntFromInterval = (
min
,
max
) => Math.
floor
(Math.
random
() * (
max
-
min
+
1
) +
min
);