summaryrefslogtreecommitdiff
path: root/client/lib/util.js
blob: 7c3082d50f25c96165dee13baf2802df10a972df (plain)
1
2
3
4
function choice (a){ return a[ Math.floor(Math.random() * a.length) ] }
function mod(n,m){ return n-(m * Math.floor(n/m)) }

export { choice, mod }