@thi.ng/transducers 8.3.13 → 8.3.15
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 +8 -7
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/transducers)
|
|
6
6
|

|
|
@@ -10,12 +10,12 @@ This project is part of the
|
|
|
10
10
|
[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.
|
|
11
11
|
|
|
12
12
|
- [About](#about)
|
|
13
|
-
|
|
13
|
+
- [Status](#status)
|
|
14
14
|
- [7.0.0 release](#700-release)
|
|
15
15
|
- [6.0.0 release](#600-release)
|
|
16
16
|
- [5.0.0 release](#500-release)
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
- [Support packages](#support-packages)
|
|
18
|
+
- [Related packages](#related-packages)
|
|
19
19
|
- [Blog posts](#blog-posts)
|
|
20
20
|
- [Installation](#installation)
|
|
21
21
|
- [Dependencies](#dependencies)
|
|
@@ -81,7 +81,7 @@ functions (i.e. `transduce()`/`transduceRight()`, `reduce()`/`reduceRight()`,
|
|
|
81
81
|
will return a transforming ES6 iterator (generator) and reducing functions
|
|
82
82
|
will return a reduced result of the given input iterable.
|
|
83
83
|
|
|
84
|
-
|
|
84
|
+
## Status
|
|
85
85
|
|
|
86
86
|
**STABLE** - used in production
|
|
87
87
|
|
|
@@ -131,7 +131,7 @@ implementation of the `IRandom` interface from the
|
|
|
131
131
|
[@thi.ng/random](https://github.com/thi-ng/umbrella/tree/develop/packages/random)
|
|
132
132
|
package.
|
|
133
133
|
|
|
134
|
-
|
|
134
|
+
## Support packages
|
|
135
135
|
|
|
136
136
|
- [@thi.ng/transducers-binary](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-binary) - Binary data related transducers & reducers
|
|
137
137
|
- [@thi.ng/transducers-fsm](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-fsm) - Transducer-based Finite State Machine transformer
|
|
@@ -139,7 +139,7 @@ package.
|
|
|
139
139
|
- [@thi.ng/transducers-patch](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-patch) - Reducers for patch-based, immutable-by-default array & object editing
|
|
140
140
|
- [@thi.ng/transducers-stats](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-stats) - Transducers for statistical / technical analysis
|
|
141
141
|
|
|
142
|
-
|
|
142
|
+
## Related packages
|
|
143
143
|
|
|
144
144
|
- [@thi.ng/csp](https://github.com/thi-ng/umbrella/tree/develop/packages/csp) - ES6 promise based CSP primitives & operations
|
|
145
145
|
- [@thi.ng/grid-iterators](https://github.com/thi-ng/umbrella/tree/develop/packages/grid-iterators) - 2D grid and shape iterators w/ multiple orderings
|
|
@@ -238,6 +238,7 @@ A selection:
|
|
|
238
238
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/scenegraph.png" width="240"/> | 2D scenegraph & shape picking | [Demo](https://demo.thi.ng/umbrella/scenegraph/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/scenegraph) |
|
|
239
239
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/shader-ast-workers.jpg" width="240"/> | Fork-join worker-based raymarch renderer (JS/CPU only) | [Demo](https://demo.thi.ng/umbrella/shader-ast-workers/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/shader-ast-workers) |
|
|
240
240
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-barchart.png" width="240"/> | Simplistic SVG bar chart component | [Demo](https://demo.thi.ng/umbrella/svg-barchart/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-barchart) |
|
|
241
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-resample.png" width="240"/> | SVG path parsing & dynamic resampling | [Demo](https://demo.thi.ng/umbrella/svg-resample/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-resample) |
|
|
241
242
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/svg-waveform.jpg" width="240"/> | Additive waveform synthesis & SVG visualization with undo/redo | [Demo](https://demo.thi.ng/umbrella/svg-waveform/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/svg-waveform) |
|
|
242
243
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/talk-slides.png" width="240"/> | hdom based slide deck viewer & slides from my ClojureX 2018 keynote | [Demo](https://demo.thi.ng/umbrella/talk-slides/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/talk-slides) |
|
|
243
244
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/triple-query.png" width="240"/> | Triple store query results & sortable table | [Demo](https://demo.thi.ng/umbrella/triple-query/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/triple-query) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transducers",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.15",
|
|
4
4
|
"description": "Lightweight transducer implementations for ES6 / TypeScript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,22 +34,22 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/arrays": "^2.3.
|
|
39
|
-
"@thi.ng/checks": "^3.2.
|
|
40
|
-
"@thi.ng/compare": "^2.1.
|
|
41
|
-
"@thi.ng/compose": "^2.1.
|
|
42
|
-
"@thi.ng/errors": "^2.
|
|
43
|
-
"@thi.ng/math": "^5.3.
|
|
44
|
-
"@thi.ng/random": "^3.3.
|
|
37
|
+
"@thi.ng/api": "^8.4.2",
|
|
38
|
+
"@thi.ng/arrays": "^2.3.6",
|
|
39
|
+
"@thi.ng/checks": "^3.2.5",
|
|
40
|
+
"@thi.ng/compare": "^2.1.12",
|
|
41
|
+
"@thi.ng/compose": "^2.1.13",
|
|
42
|
+
"@thi.ng/errors": "^2.2.0",
|
|
43
|
+
"@thi.ng/math": "^5.3.9",
|
|
44
|
+
"@thi.ng/random": "^3.3.8"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.
|
|
48
|
-
"@thi.ng/testament": "^0.
|
|
47
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
48
|
+
"@thi.ng/testament": "^0.3.0",
|
|
49
49
|
"rimraf": "^3.0.2",
|
|
50
50
|
"tools": "^0.0.1",
|
|
51
51
|
"typedoc": "^0.22.17",
|
|
52
|
-
"typescript": "^4.
|
|
52
|
+
"typescript": "^4.8.3"
|
|
53
53
|
},
|
|
54
54
|
"keywords": [
|
|
55
55
|
"2d",
|
|
@@ -567,5 +567,5 @@
|
|
|
567
567
|
],
|
|
568
568
|
"year": 2016
|
|
569
569
|
},
|
|
570
|
-
"gitHead": "
|
|
570
|
+
"gitHead": "f4c59114f2d2dfafa9014626038a9ec5242b0606\n"
|
|
571
571
|
}
|