UNPKG
@erikyuzwa/rogue-punk
Version:
latest (0.3.6)
0.3.6
0.3.5
0.3.0
0.2.0
a JavaScript library to help you build your roguelike adventures
@erikyuzwa/rogue-punk
/
dist-es
/
Utility.js
2 lines
(1 loc)
•
111 B
JavaScript
View Raw
1
2
export
const
getRandomElement
= (
arr
) => arr.
length
? arr[
Math
.
floor
(
Math
.
random
() * arr.
length
)] :
undefined
;