@stdlib/utils-none-by-right 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 +1 -1
- package/README.md +8 -8
- package/package.json +5 -4
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -93,9 +93,9 @@ var bool = noneByRight( arr, isPositive );
|
|
|
93
93
|
|
|
94
94
|
The invoked `function` is provided three arguments:
|
|
95
95
|
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
96
|
+
- **value**: collection element.
|
|
97
|
+
- **index**: collection index.
|
|
98
|
+
- **collection**: input collection.
|
|
99
99
|
|
|
100
100
|
To set the function execution context, provide a `thisArg`.
|
|
101
101
|
|
|
@@ -258,7 +258,7 @@ See [LICENSE][stdlib-license].
|
|
|
258
258
|
|
|
259
259
|
## Copyright
|
|
260
260
|
|
|
261
|
-
Copyright © 2016-
|
|
261
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
262
262
|
|
|
263
263
|
</section>
|
|
264
264
|
|
|
@@ -271,8 +271,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
271
271
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/utils-none-by-right.svg
|
|
272
272
|
[npm-url]: https://npmjs.org/package/@stdlib/utils-none-by-right
|
|
273
273
|
|
|
274
|
-
[test-image]: https://github.com/stdlib-js/utils-none-by-right/actions/workflows/test.yml/badge.svg?branch=v0.2.
|
|
275
|
-
[test-url]: https://github.com/stdlib-js/utils-none-by-right/actions/workflows/test.yml?query=branch:v0.2.
|
|
274
|
+
[test-image]: https://github.com/stdlib-js/utils-none-by-right/actions/workflows/test.yml/badge.svg?branch=v0.2.3
|
|
275
|
+
[test-url]: https://github.com/stdlib-js/utils-none-by-right/actions/workflows/test.yml?query=branch:v0.2.3
|
|
276
276
|
|
|
277
277
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-none-by-right/main.svg
|
|
278
278
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-none-by-right?branch=main
|
|
@@ -284,8 +284,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
284
284
|
|
|
285
285
|
-->
|
|
286
286
|
|
|
287
|
-
[chat-image]: https://img.shields.io/
|
|
288
|
-
[chat-url]: https://
|
|
287
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
288
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
289
289
|
|
|
290
290
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
291
291
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/utils-none-by-right",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Test whether all elements in a collection fail a test implemented by a predicate function, iterating from right to left.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -30,9 +30,10 @@
|
|
|
30
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@stdlib/assert-is-collection": "^0.2.
|
|
34
|
-
"@stdlib/assert-is-function": "^0.2.
|
|
35
|
-
"@stdlib/string-format": "^0.2.
|
|
33
|
+
"@stdlib/assert-is-collection": "^0.2.3",
|
|
34
|
+
"@stdlib/assert-is-function": "^0.2.2",
|
|
35
|
+
"@stdlib/string-format": "^0.2.3",
|
|
36
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {},
|
|
38
39
|
"engines": {
|