@stdlib/random-iter 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 CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
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 Generator Iterators
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
- > Standard library pseudorandom number generator (PRNG) iterators.
25
+ > Pseudorandom number generator (PRNG) iterators.
26
26
 
27
27
  <section class="installation">
28
28
 
@@ -44,7 +44,7 @@ var ns = require( '@stdlib/random-iter' );
44
44
 
45
45
  #### ns
46
46
 
47
- Standard library pseudorandom number generator (PRNG) iterators.
47
+ Namespace containing pseudorandom number generator (PRNG) iterators.
48
48
 
49
49
  ```javascript
50
50
  var iterators = ns;
@@ -126,6 +126,16 @@ console.log( objectKeys( ns ) );
126
126
 
127
127
  <!-- /.examples -->
128
128
 
129
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
130
+
131
+ <section class="related">
132
+
133
+ </section>
134
+
135
+ <!-- /.related -->
136
+
137
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
138
+
129
139
 
130
140
  <section class="main-repo" >
131
141
 
@@ -150,7 +160,7 @@ See [LICENSE][stdlib-license].
150
160
 
151
161
  ## Copyright
152
162
 
153
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
163
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
154
164
 
155
165
  </section>
156
166
 
@@ -169,9 +179,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
169
179
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-iter/main.svg
170
180
  [coverage-url]: https://codecov.io/github/stdlib-js/random-iter?branch=main
171
181
 
182
+ <!--
183
+
172
184
  [dependencies-image]: https://img.shields.io/david/stdlib-js/random-iter.svg
173
185
  [dependencies-url]: https://david-dm.org/stdlib-js/random-iter/main
174
186
 
187
+ -->
188
+
189
+ [umd]: https://github.com/umdjs/umd
190
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
191
+
192
+ [deno-url]: https://github.com/stdlib-js/random-iter/tree/deno
193
+ [umd-url]: https://github.com/stdlib-js/random-iter/tree/umd
194
+ [esm-url]: https://github.com/stdlib-js/random-iter/tree/esm
195
+
175
196
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
176
197
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
177
198
 
@@ -1209,7 +1209,7 @@ interface Namespace {
1209
1209
  }
1210
1210
 
1211
1211
  /**
1212
- * Standard library pseudorandom number generator iterators.
1212
+ * Pseudorandom number generator iterators.
1213
1213
  */
1214
1214
  declare var ns: Namespace;
1215
1215
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stdlib/random-iter",
3
- "version": "0.0.5",
4
- "description": "Standard library pseudorandom number generator iterators.",
3
+ "version": "0.0.6",
4
+ "description": "Pseudorandom number generator iterators.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
7
7
  "name": "The Stdlib Authors",