@stdlib/random-base 0.1.0 → 0.1.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 +2 -2
- package/SECURITY.md +5 -0
- package/docs/types/index.d.ts +1 -2
- package/package.json +101 -100
- package/CITATION.cff +0 -30
package/README.md
CHANGED
|
@@ -236,8 +236,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
|
|
|
236
236
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/random-base.svg
|
|
237
237
|
[npm-url]: https://npmjs.org/package/@stdlib/random-base
|
|
238
238
|
|
|
239
|
-
[test-image]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml/badge.svg?branch=v0.1.
|
|
240
|
-
[test-url]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml?query=branch:v0.1.
|
|
239
|
+
[test-image]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml/badge.svg?branch=v0.1.1
|
|
240
|
+
[test-url]: https://github.com/stdlib-js/random-base/actions/workflows/test.yml?query=branch:v0.1.1
|
|
241
241
|
|
|
242
242
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-base/main.svg
|
|
243
243
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-base?branch=main
|
package/SECURITY.md
ADDED
package/docs/types/index.d.ts
CHANGED
|
@@ -18,8 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
// TypeScript Version: 4.1
|
|
20
20
|
|
|
21
|
-
/*
|
|
22
|
-
/* tslint:disable:max-file-line-count */
|
|
21
|
+
/* eslint-disable max-lines */
|
|
23
22
|
|
|
24
23
|
import arcsine = require( '@stdlib/random-base-arcsine' );
|
|
25
24
|
import bernoulli = require( '@stdlib/random-base-bernoulli' );
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-base",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Base pseudorandom number generators.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -39,130 +39,131 @@
|
|
|
39
39
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@stdlib/random-base-arcsine": "^0.0
|
|
43
|
-
"@stdlib/random-base-bernoulli": "^0.0
|
|
44
|
-
"@stdlib/random-base-beta": "^0.0
|
|
45
|
-
"@stdlib/random-base-betaprime": "^0.0
|
|
46
|
-
"@stdlib/random-base-binomial": "^0.0
|
|
47
|
-
"@stdlib/random-base-box-muller": "^0.0
|
|
48
|
-
"@stdlib/random-base-cauchy": "^0.0
|
|
49
|
-
"@stdlib/random-base-chi": "^0.0
|
|
50
|
-
"@stdlib/random-base-chisquare": "^0.0
|
|
51
|
-
"@stdlib/random-base-cosine": "^0.0
|
|
52
|
-
"@stdlib/random-base-discrete-uniform": "^0.0
|
|
53
|
-
"@stdlib/random-base-erlang": "^0.0
|
|
54
|
-
"@stdlib/random-base-exponential": "^0.0
|
|
55
|
-
"@stdlib/random-base-f": "^0.0
|
|
56
|
-
"@stdlib/random-base-frechet": "^0.0
|
|
57
|
-
"@stdlib/random-base-gamma": "^0.0
|
|
58
|
-
"@stdlib/random-base-geometric": "^0.0
|
|
59
|
-
"@stdlib/random-base-gumbel": "^0.0
|
|
60
|
-
"@stdlib/random-base-hypergeometric": "^0.0
|
|
61
|
-
"@stdlib/random-base-improved-ziggurat": "^0.0
|
|
62
|
-
"@stdlib/random-base-invgamma": "^0.0
|
|
63
|
-
"@stdlib/random-base-kumaraswamy": "^0.0
|
|
64
|
-
"@stdlib/random-base-laplace": "^0.0
|
|
65
|
-
"@stdlib/random-base-levy": "^0.0
|
|
66
|
-
"@stdlib/random-base-logistic": "^0.0
|
|
67
|
-
"@stdlib/random-base-lognormal": "^0.0
|
|
68
|
-
"@stdlib/random-base-minstd": "^0.0
|
|
69
|
-
"@stdlib/random-base-minstd-shuffle": "^0.0
|
|
70
|
-
"@stdlib/random-base-mt19937": "^0.0
|
|
71
|
-
"@stdlib/random-base-negative-binomial": "^0.0
|
|
72
|
-
"@stdlib/random-base-normal": "^0.0
|
|
73
|
-
"@stdlib/random-base-pareto-type1": "^0.0
|
|
74
|
-
"@stdlib/random-base-poisson": "^0.0
|
|
75
|
-
"@stdlib/random-base-randi": "^0.0
|
|
76
|
-
"@stdlib/random-base-randn": "^0.0
|
|
77
|
-
"@stdlib/random-base-randu": "^0.0
|
|
78
|
-
"@stdlib/random-base-rayleigh": "^0.0
|
|
79
|
-
"@stdlib/random-base-reviver": "^0.0
|
|
80
|
-
"@stdlib/random-base-t": "^0.0
|
|
81
|
-
"@stdlib/random-base-triangular": "^0.0
|
|
82
|
-
"@stdlib/random-base-uniform": "^0.0
|
|
83
|
-
"@stdlib/random-base-weibull": "^0.0
|
|
84
|
-
"@stdlib/utils-define-read-only-property": "^0.1.
|
|
85
|
-
"@stdlib/utils-library-manifest": "^0.1.
|
|
42
|
+
"@stdlib/random-base-arcsine": "^0.1.0",
|
|
43
|
+
"@stdlib/random-base-bernoulli": "^0.1.0",
|
|
44
|
+
"@stdlib/random-base-beta": "^0.1.0",
|
|
45
|
+
"@stdlib/random-base-betaprime": "^0.1.0",
|
|
46
|
+
"@stdlib/random-base-binomial": "^0.1.0",
|
|
47
|
+
"@stdlib/random-base-box-muller": "^0.1.0",
|
|
48
|
+
"@stdlib/random-base-cauchy": "^0.1.0",
|
|
49
|
+
"@stdlib/random-base-chi": "^0.1.0",
|
|
50
|
+
"@stdlib/random-base-chisquare": "^0.1.0",
|
|
51
|
+
"@stdlib/random-base-cosine": "^0.1.0",
|
|
52
|
+
"@stdlib/random-base-discrete-uniform": "^0.1.0",
|
|
53
|
+
"@stdlib/random-base-erlang": "^0.1.0",
|
|
54
|
+
"@stdlib/random-base-exponential": "^0.1.0",
|
|
55
|
+
"@stdlib/random-base-f": "^0.1.0",
|
|
56
|
+
"@stdlib/random-base-frechet": "^0.1.0",
|
|
57
|
+
"@stdlib/random-base-gamma": "^0.1.0",
|
|
58
|
+
"@stdlib/random-base-geometric": "^0.1.0",
|
|
59
|
+
"@stdlib/random-base-gumbel": "^0.1.0",
|
|
60
|
+
"@stdlib/random-base-hypergeometric": "^0.1.0",
|
|
61
|
+
"@stdlib/random-base-improved-ziggurat": "^0.1.0",
|
|
62
|
+
"@stdlib/random-base-invgamma": "^0.1.0",
|
|
63
|
+
"@stdlib/random-base-kumaraswamy": "^0.1.0",
|
|
64
|
+
"@stdlib/random-base-laplace": "^0.1.0",
|
|
65
|
+
"@stdlib/random-base-levy": "^0.1.0",
|
|
66
|
+
"@stdlib/random-base-logistic": "^0.1.0",
|
|
67
|
+
"@stdlib/random-base-lognormal": "^0.1.0",
|
|
68
|
+
"@stdlib/random-base-minstd": "^0.1.0",
|
|
69
|
+
"@stdlib/random-base-minstd-shuffle": "^0.1.0",
|
|
70
|
+
"@stdlib/random-base-mt19937": "^0.1.0",
|
|
71
|
+
"@stdlib/random-base-negative-binomial": "^0.1.0",
|
|
72
|
+
"@stdlib/random-base-normal": "^0.1.0",
|
|
73
|
+
"@stdlib/random-base-pareto-type1": "^0.1.0",
|
|
74
|
+
"@stdlib/random-base-poisson": "^0.1.0",
|
|
75
|
+
"@stdlib/random-base-randi": "^0.1.0",
|
|
76
|
+
"@stdlib/random-base-randn": "^0.1.0",
|
|
77
|
+
"@stdlib/random-base-randu": "^0.1.0",
|
|
78
|
+
"@stdlib/random-base-rayleigh": "^0.1.0",
|
|
79
|
+
"@stdlib/random-base-reviver": "^0.1.0",
|
|
80
|
+
"@stdlib/random-base-t": "^0.1.0",
|
|
81
|
+
"@stdlib/random-base-triangular": "^0.1.0",
|
|
82
|
+
"@stdlib/random-base-uniform": "^0.1.0",
|
|
83
|
+
"@stdlib/random-base-weibull": "^0.1.0",
|
|
84
|
+
"@stdlib/utils-define-read-only-property": "^0.1.1",
|
|
85
|
+
"@stdlib/utils-library-manifest": "^0.1.1"
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@stdlib/array-int32": "^0.1.
|
|
88
|
+
"@stdlib/array-int32": "^0.1.1",
|
|
89
89
|
"@stdlib/array-to-json": "^0.1.0",
|
|
90
|
-
"@stdlib/array-uint32": "^0.1.
|
|
90
|
+
"@stdlib/array-uint32": "^0.1.1",
|
|
91
91
|
"@stdlib/assert-contains": "^0.1.0",
|
|
92
|
-
"@stdlib/assert-has-own-property": "^0.1.
|
|
93
|
-
"@stdlib/assert-is-array": "^0.1.
|
|
92
|
+
"@stdlib/assert-has-own-property": "^0.1.1",
|
|
93
|
+
"@stdlib/assert-is-array": "^0.1.1",
|
|
94
94
|
"@stdlib/assert-is-array-like-object": "^0.1.0",
|
|
95
|
-
"@stdlib/assert-is-boolean": "^0.1.
|
|
95
|
+
"@stdlib/assert-is-boolean": "^0.1.1",
|
|
96
96
|
"@stdlib/assert-is-collection": "^0.1.0",
|
|
97
|
-
"@stdlib/assert-is-function": "^0.1.
|
|
98
|
-
"@stdlib/assert-is-int32array": "^0.1.
|
|
97
|
+
"@stdlib/assert-is-function": "^0.1.1",
|
|
98
|
+
"@stdlib/assert-is-int32array": "^0.1.1",
|
|
99
99
|
"@stdlib/assert-is-integer": "^0.1.0",
|
|
100
|
-
"@stdlib/assert-is-nan": "^0.1.
|
|
100
|
+
"@stdlib/assert-is-nan": "^0.1.1",
|
|
101
101
|
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
|
|
102
|
-
"@stdlib/assert-is-number": "^0.1.
|
|
103
|
-
"@stdlib/assert-is-plain-object": "^0.1.
|
|
102
|
+
"@stdlib/assert-is-number": "^0.1.1",
|
|
103
|
+
"@stdlib/assert-is-plain-object": "^0.1.1",
|
|
104
104
|
"@stdlib/assert-is-positive-integer": "^0.1.0",
|
|
105
|
-
"@stdlib/assert-is-positive-number": "^0.1.
|
|
106
|
-
"@stdlib/assert-is-prng-like": "^0.1.
|
|
107
|
-
"@stdlib/assert-is-probability": "^0.1.
|
|
108
|
-
"@stdlib/assert-is-string": "^0.1.
|
|
109
|
-
"@stdlib/assert-is-uint32array": "^0.1.
|
|
110
|
-
"@stdlib/bench": "^0.1.0",
|
|
105
|
+
"@stdlib/assert-is-positive-number": "^0.1.1",
|
|
106
|
+
"@stdlib/assert-is-prng-like": "^0.1.1",
|
|
107
|
+
"@stdlib/assert-is-probability": "^0.1.1",
|
|
108
|
+
"@stdlib/assert-is-string": "^0.1.1",
|
|
109
|
+
"@stdlib/assert-is-uint32array": "^0.1.1",
|
|
111
110
|
"@stdlib/blas-base-gcopy": "^0.1.0",
|
|
112
|
-
"@stdlib/constants-float64-eps": "^0.1.
|
|
113
|
-
"@stdlib/constants-float64-half-pi": "^0.1.
|
|
114
|
-
"@stdlib/constants-float64-ln-sqrt-two-pi": "^0.1.
|
|
115
|
-
"@stdlib/constants-float64-max-safe-integer": "^0.1.
|
|
116
|
-
"@stdlib/constants-float64-pi": "^0.1.
|
|
117
|
-
"@stdlib/constants-float64-pinf": "^0.1.
|
|
118
|
-
"@stdlib/constants-float64-two-pi": "^0.1.
|
|
119
|
-
"@stdlib/constants-int32-max": "^0.1.
|
|
120
|
-
"@stdlib/constants-uint32-max": "^0.1.
|
|
121
|
-
"@stdlib/fs-exists": "^0.1.
|
|
122
|
-
"@stdlib/fs-read-dir": "^0.1.
|
|
123
|
-
"@stdlib/fs-write-file": "^0.1.
|
|
124
|
-
"@stdlib/math-base-assert-is-integer": "^0.1.
|
|
125
|
-
"@stdlib/math-base-assert-is-nan": "^0.1.
|
|
126
|
-
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.1.
|
|
127
|
-
"@stdlib/math-base-assert-is-positive-integer": "^0.1.
|
|
128
|
-
"@stdlib/math-base-assert-is-probability": "^0.1.
|
|
129
|
-
"@stdlib/math-base-ops-umul": "^0.1.
|
|
130
|
-
"@stdlib/math-base-special-abs": "^0.1.
|
|
131
|
-
"@stdlib/math-base-special-ceil": "^0.1.
|
|
111
|
+
"@stdlib/constants-float64-eps": "^0.1.1",
|
|
112
|
+
"@stdlib/constants-float64-half-pi": "^0.1.1",
|
|
113
|
+
"@stdlib/constants-float64-ln-sqrt-two-pi": "^0.1.1",
|
|
114
|
+
"@stdlib/constants-float64-max-safe-integer": "^0.1.1",
|
|
115
|
+
"@stdlib/constants-float64-pi": "^0.1.1",
|
|
116
|
+
"@stdlib/constants-float64-pinf": "^0.1.1",
|
|
117
|
+
"@stdlib/constants-float64-two-pi": "^0.1.1",
|
|
118
|
+
"@stdlib/constants-int32-max": "^0.1.1",
|
|
119
|
+
"@stdlib/constants-uint32-max": "^0.1.1",
|
|
120
|
+
"@stdlib/fs-exists": "^0.1.1",
|
|
121
|
+
"@stdlib/fs-read-dir": "^0.1.1",
|
|
122
|
+
"@stdlib/fs-write-file": "^0.1.1",
|
|
123
|
+
"@stdlib/math-base-assert-is-integer": "^0.1.1",
|
|
124
|
+
"@stdlib/math-base-assert-is-nan": "^0.1.1",
|
|
125
|
+
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.1.1",
|
|
126
|
+
"@stdlib/math-base-assert-is-positive-integer": "^0.1.1",
|
|
127
|
+
"@stdlib/math-base-assert-is-probability": "^0.1.1",
|
|
128
|
+
"@stdlib/math-base-ops-umul": "^0.1.1",
|
|
129
|
+
"@stdlib/math-base-special-abs": "^0.1.1",
|
|
130
|
+
"@stdlib/math-base-special-ceil": "^0.1.1",
|
|
132
131
|
"@stdlib/math-base-special-cos": "^0.1.0",
|
|
133
132
|
"@stdlib/math-base-special-exp": "^0.1.0",
|
|
134
133
|
"@stdlib/math-base-special-factorial": "^0.1.0",
|
|
135
134
|
"@stdlib/math-base-special-factorialln": "^0.1.0",
|
|
136
|
-
"@stdlib/math-base-special-floor": "^0.1.
|
|
137
|
-
"@stdlib/math-base-special-ln": "^0.1.
|
|
138
|
-
"@stdlib/math-base-special-max": "^0.1.
|
|
135
|
+
"@stdlib/math-base-special-floor": "^0.1.1",
|
|
136
|
+
"@stdlib/math-base-special-ln": "^0.1.1",
|
|
137
|
+
"@stdlib/math-base-special-max": "^0.1.1",
|
|
139
138
|
"@stdlib/math-base-special-pow": "^0.1.0",
|
|
140
|
-
"@stdlib/math-base-special-round": "^0.1.
|
|
141
|
-
"@stdlib/math-base-special-signum": "^0.1.
|
|
139
|
+
"@stdlib/math-base-special-round": "^0.1.1",
|
|
140
|
+
"@stdlib/math-base-special-signum": "^0.1.1",
|
|
142
141
|
"@stdlib/math-base-special-sin": "^0.1.0",
|
|
143
|
-
"@stdlib/math-base-special-sqrt": "^0.1.
|
|
142
|
+
"@stdlib/math-base-special-sqrt": "^0.1.1",
|
|
144
143
|
"@stdlib/math-base-special-tan": "^0.1.0",
|
|
145
144
|
"@stdlib/object-assign": "^0.1.0",
|
|
146
|
-
"@stdlib/process-env": "^0.1.
|
|
145
|
+
"@stdlib/process-env": "^0.1.1",
|
|
147
146
|
"@stdlib/stats-base-dists-cosine-quantile": "^0.1.0",
|
|
148
|
-
"@stdlib/stats-base-dists-normal-quantile": "^0.1.
|
|
149
|
-
"@stdlib/stats-chi2gof": "^0.0
|
|
147
|
+
"@stdlib/stats-base-dists-normal-quantile": "^0.1.1",
|
|
148
|
+
"@stdlib/stats-chi2gof": "^0.1.0",
|
|
150
149
|
"@stdlib/stats-kstest": "^0.1.0",
|
|
151
|
-
"@stdlib/string-format": "^0.1.
|
|
152
|
-
"@stdlib/time-current-year": "^0.1.
|
|
153
|
-
"@stdlib/time-now": "^0.1.
|
|
154
|
-
"@stdlib/utils-constant-function": "^0.1.
|
|
150
|
+
"@stdlib/string-format": "^0.1.1",
|
|
151
|
+
"@stdlib/time-current-year": "^0.1.1",
|
|
152
|
+
"@stdlib/time-now": "^0.1.1",
|
|
153
|
+
"@stdlib/utils-constant-function": "^0.1.1",
|
|
155
154
|
"@stdlib/utils-copy": "^0.1.0",
|
|
156
|
-
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.
|
|
157
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.
|
|
158
|
-
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.1.
|
|
155
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.1",
|
|
156
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
|
|
157
|
+
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.1.1",
|
|
159
158
|
"@stdlib/utils-keys": "^0.1.0",
|
|
160
|
-
"@stdlib/utils-noop": "^0.1.
|
|
161
|
-
"@stdlib/utils-parse-json": "^0.1.
|
|
159
|
+
"@stdlib/utils-noop": "^0.1.1",
|
|
160
|
+
"@stdlib/utils-parse-json": "^0.1.1",
|
|
162
161
|
"proxyquire": "^2.0.0",
|
|
163
162
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
164
163
|
"istanbul": "^0.4.1",
|
|
165
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
|
|
164
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
165
|
+
"@stdlib/bench-harness": "^0.1.2",
|
|
166
|
+
"@stdlib/bench": "^0.2.1"
|
|
166
167
|
},
|
|
167
168
|
"engines": {
|
|
168
169
|
"node": ">=0.10.0",
|
package/CITATION.cff
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
cff-version: 1.2.0
|
|
2
|
-
title: stdlib
|
|
3
|
-
message: >-
|
|
4
|
-
If you use this software, please cite it using the
|
|
5
|
-
metadata from this file.
|
|
6
|
-
|
|
7
|
-
type: software
|
|
8
|
-
|
|
9
|
-
authors:
|
|
10
|
-
- name: The Stdlib Authors
|
|
11
|
-
url: https://github.com/stdlib-js/stdlib/graphs/contributors
|
|
12
|
-
|
|
13
|
-
repository-code: https://github.com/stdlib-js/stdlib
|
|
14
|
-
url: https://stdlib.io
|
|
15
|
-
|
|
16
|
-
abstract: |
|
|
17
|
-
Standard library for JavaScript and Node.js.
|
|
18
|
-
|
|
19
|
-
keywords:
|
|
20
|
-
- JavaScript
|
|
21
|
-
- Node.js
|
|
22
|
-
- TypeScript
|
|
23
|
-
- standard library
|
|
24
|
-
- scientific computing
|
|
25
|
-
- numerical computing
|
|
26
|
-
- statistical computing
|
|
27
|
-
|
|
28
|
-
license: Apache-2.0 AND BSL-1.0
|
|
29
|
-
|
|
30
|
-
date-released: 2016
|