-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.js
53 lines (46 loc) · 1.08 KB
/
utils.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
/**
* @param {Number} first
*/
function* iotaGenerator(first) {
let value = first;
while(true) yield value++;
}
class Ut {
/**@type {Generator<Number, void, unknown>}*/
static #iota;
/**
* Crea un nuevo generador Iota con el valor inicial especificado, avanza el generador y devuelve ese valor
* @param {Number} [value=0] El valor inicial del nuevo generador Iota
* @returns {Number}
*/
static Iota(value = 0) {
Ut.#iota = iotaGenerator(value);
return Ut.iota;
}
/**
* Devuelve el siguiente valor del generador Iota actual
* @returns {Number}
*/
static get iota() {
if(Ut.#iota == null)
return Ut.Iota();
const value = Ut.#iota.next().value;
return /**@type {Number}*/(value);
}
/**
* Limita el valor al rango descrito (inclusive)
* @param {Number} value
* @param {Number} min
* @param {Number} max
* @returns {Number}
*/
static clamp(value, min, max) {
if(min > max) {
const temp = min;
min = max;
max = temp;
}
return Math.max(min, Math.min(value, max));
}
}
module.exports = Ut;