extra-rand 0.2.0 → 0.2.1
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 +5 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/random-bool.d.ts +1 -0
- package/lib/random-bool.js +9 -0
- package/lib/random-bool.js.map +1 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
- package/src/random-bool.ts +5 -0
package/README.md
CHANGED
|
@@ -30,6 +30,11 @@ 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
|
+
### randomBool
|
|
34
|
+
```ts
|
|
35
|
+
function randomBool(probabilityOfTrue: number): boolean
|
|
36
|
+
```
|
|
37
|
+
|
|
33
38
|
### randomByWeight
|
|
34
39
|
```ts
|
|
35
40
|
function randomByWeight(weights: number[]): number
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -17,6 +17,7 @@ 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-bool"), exports);
|
|
20
21
|
__exportStar(require("./random-by-weight"), exports);
|
|
21
22
|
__exportStar(require("./map-to-range"), exports);
|
|
22
23
|
__exportStar(require("./map-to-index-by-weight"), exports);
|
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;AACtC,qDAAkC;AAElC,iDAA8B;AAC9B,2DAAwC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,+CAA4B;AAC5B,yDAAsC;AACtC,gDAA6B;AAC7B,qDAAkC;AAElC,iDAA8B;AAC9B,2DAAwC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function randomBool(probabilityOfTrue: number): boolean;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.randomBool = void 0;
|
|
4
|
+
const random_1 = require("./random");
|
|
5
|
+
function randomBool(probabilityOfTrue) {
|
|
6
|
+
return (0, random_1.random)(0, 1) < probabilityOfTrue;
|
|
7
|
+
}
|
|
8
|
+
exports.randomBool = randomBool;
|
|
9
|
+
//# sourceMappingURL=random-bool.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"random-bool.js","sourceRoot":"","sources":["../src/random-bool.ts"],"names":[],"mappings":";;;AAAA,qCAAiC;AAEjC,SAAgB,UAAU,CAAC,iBAAyB;IAClD,OAAO,IAAA,eAAM,EAAC,CAAC,EAAE,CAAC,CAAC,GAAG,iBAAiB,CAAA;AACzC,CAAC;AAFD,gCAEC"}
|
package/package.json
CHANGED
package/src/index.ts
CHANGED