-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
64 lines (53 loc) · 1.32 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
class Picker {
/**
* @param {Function} [randomFn] Random number generator.
*/
constructor (randomFn) {
if (typeof randomFn === 'function') {
this.random = randomFn;
}
}
/**
* Generates a random number.
* @return {Number}
*/
random () {
return Math.random();
}
/**
* Pick a random value based on its weight.
* @param {Array} data Array of values.
* @return {Mixed}
*/
pick (data) {
if (!Array.isArray(data)) {
throw new TypeError('Expected an Array as the first argument');
}
// Split input into two separate arrays of values and weights.
const values = data.map(d => d[0]);
const weights = data.map(d => d[1]);
// Will contain the sum of all weights
let sum = 0;
// Will contain an array of each weight accumilating the sum of previous weights
const accumulatedWeights = [];
let weight;
for (weight of weights) {
sum += weight;
accumulatedWeights.push(sum);
}
const rand = this.random() * sum;
const value = values[accumulatedWeights.filter(element => element <= rand).length];
return value;
}
}
/**
* All-in-one function that picks a random value based on its weight.
* @param {Array} data Array of values.
* @return {Mixed}
*/
const pick = function (data) {
const picker = new Picker();
return picker.pick(data);
};
export default pick;
export { pick, Picker };