UNPKG
emo
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
0.3.0
0.2.0
0.1.0
0.0.2
0.0.1
Japanese emoticon generator ヾ(@゜▽゜@)ノ
github.com/w33ble/emo
w33ble/emo
emo
/
lib
/
random.js
6 lines
(5 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
module
.
exports
=
function
random
(
from
, to
) {
const
min = to ?
from
:
0
;
const
max = to ||
from
;
return
Math
.
floor
(
Math
.
random
() * ((max +
1
) - min)) + min; };