@stdlib/random-base 0.0.5 → 0.0.6
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/NOTICE +1 -1
- package/README.md +25 -4
- package/docs/types/index.d.ts +1 -1
- package/package.json +3 -3
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,9 +20,9 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# Pseudorandom Number Generators
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
|
-
>
|
|
25
|
+
> Base (i.e., lower-level) pseudorandom number generators (PRNGs).
|
|
26
26
|
|
|
27
27
|
<section class="installation">
|
|
28
28
|
|
|
@@ -44,7 +44,7 @@ var random = require( '@stdlib/random-base' );
|
|
|
44
44
|
|
|
45
45
|
#### random
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
Namespace containing "base" (i.e., lower-level) pseudorandom number generators (PRNGs).
|
|
48
48
|
|
|
49
49
|
```javascript
|
|
50
50
|
var ns = random;
|
|
@@ -178,6 +178,16 @@ console.log( objectKeys( random ) );
|
|
|
178
178
|
|
|
179
179
|
<!-- /.examples -->
|
|
180
180
|
|
|
181
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
182
|
+
|
|
183
|
+
<section class="related">
|
|
184
|
+
|
|
185
|
+
</section>
|
|
186
|
+
|
|
187
|
+
<!-- /.related -->
|
|
188
|
+
|
|
189
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
190
|
+
|
|
181
191
|
|
|
182
192
|
<section class="main-repo" >
|
|
183
193
|
|
|
@@ -202,7 +212,7 @@ See [LICENSE][stdlib-license].
|
|
|
202
212
|
|
|
203
213
|
## Copyright
|
|
204
214
|
|
|
205
|
-
Copyright © 2016-
|
|
215
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
206
216
|
|
|
207
217
|
</section>
|
|
208
218
|
|
|
@@ -221,9 +231,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
221
231
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-base/main.svg
|
|
222
232
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-base?branch=main
|
|
223
233
|
|
|
234
|
+
<!--
|
|
235
|
+
|
|
224
236
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/random-base.svg
|
|
225
237
|
[dependencies-url]: https://david-dm.org/stdlib-js/random-base/main
|
|
226
238
|
|
|
239
|
+
-->
|
|
240
|
+
|
|
241
|
+
[umd]: https://github.com/umdjs/umd
|
|
242
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
243
|
+
|
|
244
|
+
[deno-url]: https://github.com/stdlib-js/random-base/tree/deno
|
|
245
|
+
[umd-url]: https://github.com/stdlib-js/random-base/tree/umd
|
|
246
|
+
[esm-url]: https://github.com/stdlib-js/random-base/tree/esm
|
|
247
|
+
|
|
227
248
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
228
249
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
229
250
|
|
package/docs/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/random-base",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"description": "Base pseudorandom number generators.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "The Stdlib Authors",
|
|
@@ -126,6 +126,7 @@
|
|
|
126
126
|
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.0.x",
|
|
127
127
|
"@stdlib/math-base-assert-is-positive-integer": "^0.0.x",
|
|
128
128
|
"@stdlib/math-base-assert-is-probability": "^0.0.x",
|
|
129
|
+
"@stdlib/math-base-ops-umul": "^0.0.x",
|
|
129
130
|
"@stdlib/math-base-special-abs": "^0.0.x",
|
|
130
131
|
"@stdlib/math-base-special-ceil": "^0.0.x",
|
|
131
132
|
"@stdlib/math-base-special-cos": "^0.0.x",
|
|
@@ -141,7 +142,6 @@
|
|
|
141
142
|
"@stdlib/math-base-special-sin": "^0.0.x",
|
|
142
143
|
"@stdlib/math-base-special-sqrt": "^0.0.x",
|
|
143
144
|
"@stdlib/math-base-special-tan": "^0.0.x",
|
|
144
|
-
"@stdlib/math-base-special-uimul": "^0.0.x",
|
|
145
145
|
"@stdlib/process-env": "^0.0.x",
|
|
146
146
|
"@stdlib/stats-base-dists-cosine-quantile": "^0.0.x",
|
|
147
147
|
"@stdlib/stats-base-dists-normal-quantile": "^0.0.x",
|