getRandomWeighted.ts 104 B

123
  1. Array.prototype.getRandomWeighted = function(flags={}){
  2. return this[this.getRandomWeightedId(flags)];
  3. }