UNPKG
jazzy-utility
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
A small utility library
github.com/JazzBrown1/jazzy-utility
JazzBrown1/jazzy-utility
jazzy-utility
/
src
/
randomInt.js
6 lines
(5 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
export default
(
min
,
max
)
=
>
{
const _
min
=
Math.ceil
(
min
)
; const _
max
=
Math.floor
(
max
)
;
return
Math.floor
(
Math.random
(
)
*
(
_
max
+
1
-
_
min
)
)
+
_
min
;
}
;