UNPKG
hystrixjs
Version:
latest (0.2.0)
0.2.0
0.1.2
0.1.1
0.1.0-beta
0.0.4-beta
0.0.3
resilience module for NodeJS applications
bitbucket.org/igor_sechyn/hystrixjs
hystrixjs
/
example
/
app
/
random_int.js
5 lines
(3 loc)
•
117 B
JavaScript
View Raw
1
2
3
4
5
module
.exports =
function
getRandomInt
(min, max)
{
return
Math.
floor
(Math.
random
() * (
max
-
min
+
1
)) +
min
; };