@stdlib/utils-until 0.0.7 → 0.0.8

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
  # until
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
  > Invoke a function until a test condition is true.
26
26
 
@@ -147,6 +147,24 @@ until( predicate, log );
147
147
 
148
148
  <!-- /.references -->
149
149
 
150
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
151
+
152
+ <section class="related">
153
+
154
+ * * *
155
+
156
+ ## See Also
157
+
158
+ - <span class="package-name">[`@stdlib/utils/do-until`][@stdlib/utils/do-until]</span><span class="delimiter">: </span><span class="description">invoke a function until a test condition is true.</span>
159
+ - <span class="package-name">[`@stdlib/utils/do-while`][@stdlib/utils/do-while]</span><span class="delimiter">: </span><span class="description">invoke a function while a test condition is true.</span>
160
+ - <span class="package-name">[`@stdlib/utils/async/until`][@stdlib/utils/async/until]</span><span class="delimiter">: </span><span class="description">invoke a function until a test condition is true.</span>
161
+ - <span class="package-name">[`@stdlib/utils/until-each`][@stdlib/utils/until-each]</span><span class="delimiter">: </span><span class="description">until a test condition is true, invoke a function for each element in a collection.</span>
162
+ - <span class="package-name">[`@stdlib/utils/while`][@stdlib/utils/while]</span><span class="delimiter">: </span><span class="description">invoke a function while a test condition is true.</span>
163
+
164
+ </section>
165
+
166
+ <!-- /.related -->
167
+
150
168
  <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
151
169
 
152
170
 
@@ -173,7 +191,7 @@ See [LICENSE][stdlib-license].
173
191
 
174
192
  ## Copyright
175
193
 
176
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
194
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
177
195
 
178
196
  </section>
179
197
 
@@ -192,9 +210,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
192
210
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-until/main.svg
193
211
  [coverage-url]: https://codecov.io/github/stdlib-js/utils-until?branch=main
194
212
 
213
+ <!--
214
+
195
215
  [dependencies-image]: https://img.shields.io/david/stdlib-js/utils-until.svg
196
216
  [dependencies-url]: https://david-dm.org/stdlib-js/utils-until/main
197
217
 
218
+ -->
219
+
220
+ [umd]: https://github.com/umdjs/umd
221
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
222
+
223
+ [deno-url]: https://github.com/stdlib-js/utils-until/tree/deno
224
+ [umd-url]: https://github.com/stdlib-js/utils-until/tree/umd
225
+ [esm-url]: https://github.com/stdlib-js/utils-until/tree/esm
226
+
198
227
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
199
228
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
200
229
 
@@ -204,6 +233,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
204
233
 
205
234
  [stdlib-license]: https://raw.githubusercontent.com/stdlib-js/utils-until/main/LICENSE
206
235
 
236
+ <!-- <related-links> -->
237
+
238
+ [@stdlib/utils/do-until]: https://www.npmjs.com/package/@stdlib/utils-do-until
239
+
240
+ [@stdlib/utils/do-while]: https://www.npmjs.com/package/@stdlib/utils-do-while
241
+
242
+ [@stdlib/utils/async/until]: https://www.npmjs.com/package/@stdlib/utils-async-until
243
+
244
+ [@stdlib/utils/until-each]: https://www.npmjs.com/package/@stdlib/utils-until-each
245
+
246
+ [@stdlib/utils/while]: https://www.npmjs.com/package/@stdlib/utils-while
247
+
248
+ <!-- </related-links> -->
249
+
207
250
  </section>
208
251
 
209
252
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/utils-until",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Invoke a function until a test condition is true.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {