traxxx/src/utils/pick-random.js

6 lines
118 B
JavaScript
Raw Normal View History

2020-02-26 23:38:11 +00:00
function pickRandom(array) {
return array[Math.floor(Math.random() * array.length)];
2020-02-26 23:38:11 +00:00
}
module.exports = pickRandom;