14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
/**
|
|
* @class RandomList
|
|
*/
|
|
|
|
module.exports = RandomList;
|
|
|
|
var _ = require('../../../../src/lib/utils');
|
|
|
|
function RandomList(list) {
|
|
this.get = function () {
|
|
return list[Math.round(Math.random() * list.length)];
|
|
};
|
|
}
|