@stdlib/utils-async 0.2.0 → 0.3.0
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/README.md +2 -2
- package/package.json +37 -72
package/README.md
CHANGED
|
@@ -173,8 +173,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
173
173
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/utils-async.svg
|
|
174
174
|
[npm-url]: https://npmjs.org/package/@stdlib/utils-async
|
|
175
175
|
|
|
176
|
-
[test-image]: https://github.com/stdlib-js/utils-async/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
177
|
-
[test-url]: https://github.com/stdlib-js/utils-async/actions/workflows/test.yml?query=branch:v0.
|
|
176
|
+
[test-image]: https://github.com/stdlib-js/utils-async/actions/workflows/test.yml/badge.svg?branch=v0.3.0
|
|
177
|
+
[test-url]: https://github.com/stdlib-js/utils-async/actions/workflows/test.yml?query=branch:v0.3.0
|
|
178
178
|
|
|
179
179
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/utils-async/main.svg
|
|
180
180
|
[coverage-url]: https://codecov.io/github/stdlib-js/utils-async?branch=main
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/utils-async",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Standard async utilities.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -16,17 +16,11 @@
|
|
|
16
16
|
"main": "lib/index.js",
|
|
17
17
|
"directories": {
|
|
18
18
|
"doc": "./docs",
|
|
19
|
-
"example": "./examples",
|
|
20
19
|
"lib": "./lib",
|
|
21
|
-
"
|
|
20
|
+
"dist": "./dist"
|
|
22
21
|
},
|
|
23
22
|
"types": "./docs/types",
|
|
24
|
-
"scripts": {
|
|
25
|
-
"test": "make test",
|
|
26
|
-
"test-cov": "make test-cov",
|
|
27
|
-
"examples": "make examples",
|
|
28
|
-
"benchmark": "make benchmark"
|
|
29
|
-
},
|
|
23
|
+
"scripts": {},
|
|
30
24
|
"homepage": "https://stdlib.io",
|
|
31
25
|
"repository": {
|
|
32
26
|
"type": "git",
|
|
@@ -36,70 +30,41 @@
|
|
|
36
30
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
31
|
},
|
|
38
32
|
"dependencies": {
|
|
39
|
-
"@stdlib/utils-async-any-by": "^0.2.
|
|
40
|
-
"@stdlib/utils-async-any-by-right": "^0.2.
|
|
41
|
-
"@stdlib/utils-async-bifurcate-by": "^0.2.
|
|
42
|
-
"@stdlib/utils-async-compose": "^0.2.
|
|
43
|
-
"@stdlib/utils-async-count-by": "^0.2.
|
|
44
|
-
"@stdlib/utils-async-do-until": "^0.2.
|
|
45
|
-
"@stdlib/utils-async-do-while": "^0.2.
|
|
46
|
-
"@stdlib/utils-async-every-by": "^0.2.
|
|
47
|
-
"@stdlib/utils-async-every-by-right": "^0.2.
|
|
48
|
-
"@stdlib/utils-async-for-each": "^0.2.
|
|
49
|
-
"@stdlib/utils-async-for-each-right": "^0.2.
|
|
50
|
-
"@stdlib/utils-async-function-sequence": "^0.2.
|
|
51
|
-
"@stdlib/utils-async-group-by": "^0.2.
|
|
52
|
-
"@stdlib/utils-async-if-else": "^0.2.
|
|
53
|
-
"@stdlib/utils-async-if-then": "^0.2.
|
|
54
|
-
"@stdlib/utils-async-inmap": "^0.2.
|
|
55
|
-
"@stdlib/utils-async-inmap-right": "^0.2.
|
|
56
|
-
"@stdlib/utils-async-map-function": "^0.2.
|
|
57
|
-
"@stdlib/utils-async-map-keys": "^0.2.
|
|
58
|
-
"@stdlib/utils-async-map-values": "^0.2.
|
|
59
|
-
"@stdlib/utils-async-none-by": "^0.2.
|
|
60
|
-
"@stdlib/utils-async-none-by-right": "^0.2.
|
|
61
|
-
"@stdlib/utils-async-reduce": "^0.2.
|
|
62
|
-
"@stdlib/utils-async-reduce-right": "^0.2.
|
|
63
|
-
"@stdlib/utils-async-series-waterfall": "^0.2.
|
|
64
|
-
"@stdlib/utils-async-some-by": "^0.2.
|
|
65
|
-
"@stdlib/utils-async-some-by-right": "^0.2.
|
|
66
|
-
"@stdlib/utils-async-tabulate-by": "^0.2.
|
|
67
|
-
"@stdlib/utils-async-try-catch": "^0.2.
|
|
68
|
-
"@stdlib/utils-async-try-then": "^0.2.
|
|
69
|
-
"@stdlib/utils-async-until": "^0.2.
|
|
70
|
-
"@stdlib/utils-async-while": "^0.2.
|
|
71
|
-
"@stdlib/utils-define-read-only-property": "^0.2.
|
|
72
|
-
},
|
|
73
|
-
"devDependencies": {
|
|
74
|
-
"@stdlib/assert-has-own-property": "^0.1.1",
|
|
75
|
-
"@stdlib/assert-is-array": "^0.1.1",
|
|
76
|
-
"@stdlib/assert-is-boolean": "^0.1.1",
|
|
77
|
-
"@stdlib/assert-is-collection": "^0.1.0",
|
|
78
|
-
"@stdlib/assert-is-function": "^0.1.1",
|
|
79
|
-
"@stdlib/assert-is-function-array": "^0.2.0",
|
|
80
|
-
"@stdlib/assert-is-nan": "^0.1.1",
|
|
81
|
-
"@stdlib/assert-is-nonnegative-integer": "^0.1.0",
|
|
82
|
-
"@stdlib/assert-is-plain-object": "^0.1.1",
|
|
83
|
-
"@stdlib/assert-is-positive-integer": "^0.1.0",
|
|
84
|
-
"@stdlib/constants-float64-eps": "^0.1.1",
|
|
85
|
-
"@stdlib/constants-float64-pinf": "^0.1.1",
|
|
86
|
-
"@stdlib/fs-read-file": "^0.1.1",
|
|
87
|
-
"@stdlib/math-base-assert-is-nan": "^0.1.1",
|
|
88
|
-
"@stdlib/math-base-special-ceil": "^0.1.1",
|
|
89
|
-
"@stdlib/random-base-randu": "^0.1.0",
|
|
90
|
-
"@stdlib/string-format": "^0.2.0",
|
|
91
|
-
"@stdlib/string-repeat": "^0.1.0",
|
|
92
|
-
"@stdlib/string-replace": "^0.1.1",
|
|
93
|
-
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
94
|
-
"@stdlib/utils-index-of": "^0.1.0",
|
|
95
|
-
"@stdlib/utils-keys": "^0.1.0",
|
|
96
|
-
"@stdlib/utils-noop": "^0.2.0",
|
|
97
|
-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
98
|
-
"istanbul": "^0.4.1",
|
|
99
|
-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
100
|
-
"@stdlib/bench-harness": "^0.2.0",
|
|
101
|
-
"@stdlib/bench": "^0.3.1"
|
|
33
|
+
"@stdlib/utils-async-any-by": "^0.2.2",
|
|
34
|
+
"@stdlib/utils-async-any-by-right": "^0.2.2",
|
|
35
|
+
"@stdlib/utils-async-bifurcate-by": "^0.2.2",
|
|
36
|
+
"@stdlib/utils-async-compose": "^0.2.2",
|
|
37
|
+
"@stdlib/utils-async-count-by": "^0.2.2",
|
|
38
|
+
"@stdlib/utils-async-do-until": "^0.2.2",
|
|
39
|
+
"@stdlib/utils-async-do-while": "^0.2.2",
|
|
40
|
+
"@stdlib/utils-async-every-by": "^0.2.2",
|
|
41
|
+
"@stdlib/utils-async-every-by-right": "^0.2.2",
|
|
42
|
+
"@stdlib/utils-async-for-each": "^0.2.2",
|
|
43
|
+
"@stdlib/utils-async-for-each-right": "^0.2.2",
|
|
44
|
+
"@stdlib/utils-async-function-sequence": "^0.2.2",
|
|
45
|
+
"@stdlib/utils-async-group-by": "^0.2.2",
|
|
46
|
+
"@stdlib/utils-async-if-else": "^0.2.2",
|
|
47
|
+
"@stdlib/utils-async-if-then": "^0.2.2",
|
|
48
|
+
"@stdlib/utils-async-inmap": "^0.2.2",
|
|
49
|
+
"@stdlib/utils-async-inmap-right": "^0.2.2",
|
|
50
|
+
"@stdlib/utils-async-map-function": "^0.2.2",
|
|
51
|
+
"@stdlib/utils-async-map-keys": "^0.2.2",
|
|
52
|
+
"@stdlib/utils-async-map-values": "^0.2.2",
|
|
53
|
+
"@stdlib/utils-async-none-by": "^0.2.2",
|
|
54
|
+
"@stdlib/utils-async-none-by-right": "^0.2.2",
|
|
55
|
+
"@stdlib/utils-async-reduce": "^0.2.2",
|
|
56
|
+
"@stdlib/utils-async-reduce-right": "^0.2.2",
|
|
57
|
+
"@stdlib/utils-async-series-waterfall": "^0.2.2",
|
|
58
|
+
"@stdlib/utils-async-some-by": "^0.2.2",
|
|
59
|
+
"@stdlib/utils-async-some-by-right": "^0.2.2",
|
|
60
|
+
"@stdlib/utils-async-tabulate-by": "^0.2.2",
|
|
61
|
+
"@stdlib/utils-async-try-catch": "^0.2.2",
|
|
62
|
+
"@stdlib/utils-async-try-then": "^0.2.2",
|
|
63
|
+
"@stdlib/utils-async-until": "^0.2.2",
|
|
64
|
+
"@stdlib/utils-async-while": "^0.2.2",
|
|
65
|
+
"@stdlib/utils-define-read-only-property": "^0.2.2"
|
|
102
66
|
},
|
|
67
|
+
"devDependencies": {},
|
|
103
68
|
"engines": {
|
|
104
69
|
"node": ">=0.10.0",
|
|
105
70
|
"npm": ">2.7.0"
|