extra-rand 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/map-to-index-by-weight.d.ts +1 -0
- package/lib/map-to-index-by-weight.js +34 -0
- package/lib/map-to-index-by-weight.js.map +1 -0
- package/lib/random-by-weight.d.ts +1 -0
- package/lib/random-by-weight.js +9 -0
- package/lib/random-by-weight.js.map +1 -0
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -30,7 +30,14 @@ function randomIntInclusive(min: number, max: number): number
|
|
|
30
30
|
|
|
31
31
|
The function returns an integer in the range `[Math.ceil(min), Math.floor(max)]`.
|
|
32
32
|
|
|
33
|
-
###
|
|
33
|
+
### randomByWeight
|
|
34
|
+
```ts
|
|
35
|
+
function randomByWeight(weights: number[]): number
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
The function returns an index of one of weights.
|
|
39
|
+
|
|
40
|
+
### Map
|
|
34
41
|
These low-level methods help you to use random number generators other than `Math.random()`.
|
|
35
42
|
|
|
36
43
|
#### mapToRange
|
|
@@ -50,3 +57,12 @@ function mapToIntRange(
|
|
|
50
57
|
, newMin: number, newMax: number
|
|
51
58
|
): number
|
|
52
59
|
```
|
|
60
|
+
|
|
61
|
+
#### mapToIndexByWeight
|
|
62
|
+
```ts
|
|
63
|
+
function mapByWeight(
|
|
64
|
+
value: number
|
|
65
|
+
, oldMin: number, oldMax: number
|
|
66
|
+
, weights: number[]
|
|
67
|
+
): number
|
|
68
|
+
```
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -17,6 +17,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./random"), exports);
|
|
18
18
|
__exportStar(require("./random-int"), exports);
|
|
19
19
|
__exportStar(require("./random-int-inclusive"), exports);
|
|
20
|
+
__exportStar(require("./random-by-weight"), exports);
|
|
20
21
|
__exportStar(require("./map-to-range"), exports);
|
|
21
22
|
__exportStar(require("./map-to-int-range"), exports);
|
|
23
|
+
__exportStar(require("./map-to-index-by-weight"), exports);
|
|
22
24
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,+CAA4B;AAC5B,yDAAsC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,+CAA4B;AAC5B,yDAAsC;AACtC,qDAAkC;AAElC,iDAA8B;AAC9B,qDAAkC;AAClC,2DAAwC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function mapToIndexByWeight(value: number, oldMin: number, oldMax: number, weights: number[]): number;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mapToIndexByWeight = void 0;
|
|
4
|
+
const map_to_range_1 = require("./map-to-range");
|
|
5
|
+
const map_to_int_range_1 = require("./map-to-int-range");
|
|
6
|
+
function mapToIndexByWeight(value, oldMin, oldMax, weights) {
|
|
7
|
+
const newMin = 0;
|
|
8
|
+
const newMax = weights.reduce((acc, cur) => acc + Math.max(cur, 0));
|
|
9
|
+
if (newMax === 0) {
|
|
10
|
+
const index = (0, map_to_int_range_1.mapToIntRange)(value, oldMin, oldMax, newMin, weights.length);
|
|
11
|
+
return index === weights.length
|
|
12
|
+
? weights.length - 1
|
|
13
|
+
: index;
|
|
14
|
+
}
|
|
15
|
+
else {
|
|
16
|
+
const newValue = (0, map_to_range_1.mapToRange)(value, oldMin, oldMax, newMin, newMax);
|
|
17
|
+
let remains = newMax;
|
|
18
|
+
for (let i = weights.length; i--;) {
|
|
19
|
+
const weight = weights[i];
|
|
20
|
+
if (weight <= 0) {
|
|
21
|
+
continue;
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
remains -= weight;
|
|
25
|
+
if (newValue >= remains) {
|
|
26
|
+
return i;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
throw new Error('Impossible route');
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
exports.mapToIndexByWeight = mapToIndexByWeight;
|
|
34
|
+
//# sourceMappingURL=map-to-index-by-weight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map-to-index-by-weight.js","sourceRoot":"","sources":["../src/map-to-index-by-weight.ts"],"names":[],"mappings":";;;AAAA,iDAA2C;AAC3C,yDAAkD;AAElD,SAAgB,kBAAkB,CAChC,KAAa,EACb,MAAc,EAAE,MAAc,EAC9B,OAAiB;IAEjB,MAAM,MAAM,GAAG,CAAC,CAAA;IAChB,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,CAAA;IACnE,IAAI,MAAM,KAAK,CAAC,EAAE;QAEhB,MAAM,KAAK,GAAG,IAAA,gCAAa,EAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,MAAM,CAAC,CAAA;QAE1E,OAAO,KAAK,KAAK,OAAO,CAAC,MAAM;YAC1B,CAAC,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC;YACpB,CAAC,CAAC,KAAK,CAAA;KACb;SAAM;QACL,MAAM,QAAQ,GAAG,IAAA,yBAAU,EAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAA;QAElE,IAAI,OAAO,GAAG,MAAM,CAAA;QACpB,KAAK,IAAI,CAAC,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,EAAE,GAAG;YACjC,MAAM,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,CAAA;YACzB,IAAI,MAAM,IAAI,CAAC,EAAE;gBACf,SAAQ;aACT;iBAAM;gBACL,OAAO,IAAI,MAAM,CAAA;gBACjB,IAAI,QAAQ,IAAI,OAAO,EAAE;oBACvB,OAAO,CAAC,CAAA;iBACT;aACF;SACF;QAED,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAA;KACpC;AACH,CAAC;AAhCD,gDAgCC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function randomByWeight(weights: number[]): number;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.randomByWeight = void 0;
|
|
4
|
+
const map_to_index_by_weight_1 = require("./map-to-index-by-weight");
|
|
5
|
+
function randomByWeight(weights) {
|
|
6
|
+
return (0, map_to_index_by_weight_1.mapToIndexByWeight)(Math.random(), 0, 1, weights);
|
|
7
|
+
}
|
|
8
|
+
exports.randomByWeight = randomByWeight;
|
|
9
|
+
//# sourceMappingURL=random-by-weight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"random-by-weight.js","sourceRoot":"","sources":["../src/random-by-weight.ts"],"names":[],"mappings":";;;AAAA,qEAA6D;AAE7D,SAAgB,cAAc,CAAC,OAAiB;IAC9C,OAAO,IAAA,2CAAkB,EACvB,IAAI,CAAC,MAAM,EAAE,EACb,CAAC,EAAE,CAAC,EACJ,OAAO,CACR,CAAA;AACH,CAAC;AAND,wCAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "extra-rand",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Yet another random library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"random"
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
40
40
|
"@typescript-eslint/parser": "^5.57.0",
|
|
41
41
|
"eslint": "^8.37.0",
|
|
42
|
-
"extra-generator": "^0.2.17",
|
|
43
42
|
"husky": "^4.3.8",
|
|
44
43
|
"jest": "^29.5.0",
|
|
45
44
|
"npm-run-all": "^4.1.5",
|