Files
elasticsearch-js/scripts/generate/logs/samples/random_list.js

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)];
};
}