@stdlib/iter-datespace 0.0.6 → 0.0.7

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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +45 -2
  3. package/package.json +1 -1
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,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # iterDatespace
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
  > Create an iterator which returns evenly spaced dates over a specified interval.
26
26
 
@@ -216,6 +216,24 @@ while ( true ) {
216
216
 
217
217
  <!-- /.references -->
218
218
 
219
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
220
+
221
+ <section class="related">
222
+
223
+ * * *
224
+
225
+ ## See Also
226
+
227
+ - <span class="package-name">[`@stdlib/array/from-iterator`][@stdlib/array/from-iterator]</span><span class="delimiter">: </span><span class="description">create (or fill) an array from an iterator.</span>
228
+ - <span class="package-name">[`@stdlib/iter/incrspace`][@stdlib/iter/incrspace]</span><span class="delimiter">: </span><span class="description">create an iterator which returns evenly spaced numbers according to a specified increment.</span>
229
+ - <span class="package-name">[`@stdlib/iter/linspace`][@stdlib/iter/linspace]</span><span class="delimiter">: </span><span class="description">create an iterator which returns evenly spaced numbers over a specified interval.</span>
230
+ - <span class="package-name">[`@stdlib/iter/logspace`][@stdlib/iter/logspace]</span><span class="delimiter">: </span><span class="description">create an iterator which returns evenly spaced numbers on a log scale.</span>
231
+ - <span class="package-name">[`@stdlib/iter/step`][@stdlib/iter/step]</span><span class="delimiter">: </span><span class="description">create an iterator which returns a sequence of numbers according to a specified increment.</span>
232
+
233
+ </section>
234
+
235
+ <!-- /.related -->
236
+
219
237
  <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
220
238
 
221
239
 
@@ -242,7 +260,7 @@ See [LICENSE][stdlib-license].
242
260
 
243
261
  ## Copyright
244
262
 
245
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
263
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
246
264
 
247
265
  </section>
248
266
 
@@ -261,9 +279,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
261
279
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/iter-datespace/main.svg
262
280
  [coverage-url]: https://codecov.io/github/stdlib-js/iter-datespace?branch=main
263
281
 
282
+ <!--
283
+
264
284
  [dependencies-image]: https://img.shields.io/david/stdlib-js/iter-datespace.svg
265
285
  [dependencies-url]: https://david-dm.org/stdlib-js/iter-datespace/main
266
286
 
287
+ -->
288
+
289
+ [umd]: https://github.com/umdjs/umd
290
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
291
+
292
+ [deno-url]: https://github.com/stdlib-js/iter-datespace/tree/deno
293
+ [umd-url]: https://github.com/stdlib-js/iter-datespace/tree/umd
294
+ [esm-url]: https://github.com/stdlib-js/iter-datespace/tree/esm
295
+
267
296
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
268
297
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
269
298
 
@@ -273,6 +302,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
273
302
 
274
303
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/iter-datespace/main/LICENSE
275
304
 
305
+ <!-- <related-links> -->
306
+
307
+ [@stdlib/array/from-iterator]: https://www.npmjs.com/package/@stdlib/array-from-iterator
308
+
309
+ [@stdlib/iter/incrspace]: https://www.npmjs.com/package/@stdlib/iter-incrspace
310
+
311
+ [@stdlib/iter/linspace]: https://www.npmjs.com/package/@stdlib/iter-linspace
312
+
313
+ [@stdlib/iter/logspace]: https://www.npmjs.com/package/@stdlib/iter-logspace
314
+
315
+ [@stdlib/iter/step]: https://www.npmjs.com/package/@stdlib/iter-step
316
+
317
+ <!-- </related-links> -->
318
+
276
319
  </section>
277
320
 
278
321
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/iter-datespace",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Create an iterator which returns evenly spaced dates over a specified interval.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {