@stdlib/utils-until 0.2.1 → 0.2.3

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-2024 The Stdlib Authors.
1
+ Copyright (c) 2016-2026 The Stdlib Authors.
package/README.md CHANGED
@@ -88,7 +88,7 @@ until( predicate, beep );
88
88
 
89
89
  Both the `predicate` function and the `function` to invoke are provided a single argument:
90
90
 
91
- - `i`: iteration number (starting from zero)
91
+ - **i**: iteration number (starting from zero).
92
92
 
93
93
  To set the function execution context for the invoked function, provide a `thisArg`.
94
94
 
@@ -202,7 +202,7 @@ See [LICENSE][stdlib-license].
202
202
 
203
203
  ## Copyright
204
204
 
205
- Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
205
+ Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
206
206
 
207
207
  </section>
208
208
 
@@ -215,8 +215,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
215
215
  [npm-image]: http://img.shields.io/npm/v/@stdlib/utils-until.svg
216
216
  [npm-url]: https://npmjs.org/package/@stdlib/utils-until
217
217
 
218
- [test-image]: https://github.com/stdlib-js/utils-until/actions/workflows/test.yml/badge.svg?branch=v0.2.1
219
- [test-url]: https://github.com/stdlib-js/utils-until/actions/workflows/test.yml?query=branch:v0.2.1
218
+ [test-image]: https://github.com/stdlib-js/utils-until/actions/workflows/test.yml/badge.svg?branch=v0.2.3
219
+ [test-url]: https://github.com/stdlib-js/utils-until/actions/workflows/test.yml?query=branch:v0.2.3
220
220
 
221
221
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-until/main.svg
222
222
  [coverage-url]: https://codecov.io/github/stdlib-js/utils-until?branch=main
@@ -228,8 +228,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
228
228
 
229
229
  -->
230
230
 
231
- [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
232
- [chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
231
+ [chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
232
+ [chat-url]: https://stdlib.zulipchat.com
233
233
 
234
234
  [stdlib]: https://github.com/stdlib-js/stdlib
235
235
 
@@ -51,7 +51,7 @@ type Predicate = ( i: number ) => boolean;
51
51
  *
52
52
  * until( predicate, beep );
53
53
  */
54
- declare function until<T extends Function>( fcn: T, predicate: Predicate, thisArg?: ThisParameterType<T> ): void;
54
+ declare function until<T extends Function>( predicate: Predicate, fcn: T, thisArg?: ThisParameterType<T> ): void;
55
55
 
56
56
 
57
57
  // EXPORTS //
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/utils-until",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "Invoke a function until a test condition is true.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -30,8 +30,9 @@
30
30
  "url": "https://github.com/stdlib-js/stdlib/issues"
31
31
  },
32
32
  "dependencies": {
33
- "@stdlib/assert-is-function": "^0.2.1",
34
- "@stdlib/string-format": "^0.2.1"
33
+ "@stdlib/assert-is-function": "^0.2.2",
34
+ "@stdlib/string-format": "^0.2.2",
35
+ "@stdlib/error-tools-fmtprodmsg": "^0.2.2"
35
36
  },
36
37
  "devDependencies": {},
37
38
  "engines": {