@thi.ng/transducers-async 0.2.2 → 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/CHANGELOG.md +1 -1
- package/README.md +7 -0
- package/package.json +9 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
- [Transducers](#transducers)
|
|
22
22
|
- [Reducers](#reducers)
|
|
23
23
|
- [Status](#status)
|
|
24
|
+
- [Related packages](#related-packages)
|
|
24
25
|
- [Installation](#installation)
|
|
25
26
|
- [Dependencies](#dependencies)
|
|
26
27
|
- [Usage examples](#usage-examples)
|
|
@@ -83,6 +84,12 @@ Async versions of various highly composable transducers, reducers and iterators.
|
|
|
83
84
|
|
|
84
85
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Btransducers-async%5D+in%3Atitle)
|
|
85
86
|
|
|
87
|
+
## Related packages
|
|
88
|
+
|
|
89
|
+
- [@thi.ng/csp](https://github.com/thi-ng/umbrella/tree/develop/packages/csp) - Primitives & operators for Communicating Sequential Processes based on async/await and async iterables
|
|
90
|
+
- [@thi.ng/fibers](https://github.com/thi-ng/umbrella/tree/develop/packages/fibers) - Process hierarchies & operators for cooperative multitasking
|
|
91
|
+
- [@thi.ng/rstream](https://github.com/thi-ng/umbrella/tree/develop/packages/rstream) - Reactive streams & subscription primitives for constructing dataflow graphs / pipelines
|
|
92
|
+
|
|
86
93
|
## Installation
|
|
87
94
|
|
|
88
95
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transducers-async",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Async versions of various highly composable transducers, reducers and iterators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@thi.ng/checks": "^3.6.3",
|
|
42
42
|
"@thi.ng/compose": "^3.0.3",
|
|
43
43
|
"@thi.ng/errors": "^2.5.6",
|
|
44
|
-
"@thi.ng/transducers": "^9.0.
|
|
44
|
+
"@thi.ng/transducers": "^9.0.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"infinite",
|
|
59
59
|
"iterator",
|
|
60
60
|
"lazy",
|
|
61
|
+
"multitasking",
|
|
61
62
|
"partition",
|
|
62
63
|
"pipeline",
|
|
63
64
|
"reducer",
|
|
@@ -195,8 +196,13 @@
|
|
|
195
196
|
"thi.ng": {
|
|
196
197
|
"alias": "txa",
|
|
197
198
|
"parent": "@thi.ng/transducers",
|
|
199
|
+
"related": [
|
|
200
|
+
"csp",
|
|
201
|
+
"fibers",
|
|
202
|
+
"rstream"
|
|
203
|
+
],
|
|
198
204
|
"status": "alpha",
|
|
199
205
|
"year": 2018
|
|
200
206
|
},
|
|
201
|
-
"gitHead": "
|
|
207
|
+
"gitHead": "aed3421c21044c005fbcb7cc37965ccf85a870d2\n"
|
|
202
208
|
}
|