@thi.ng/transducers 9.0.12 → 9.0.13
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 +3 -2
- package/package.json +17 -15
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
|
|
64
64
|
## About
|
|
65
65
|
|
|
66
|
-
|
|
66
|
+
Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations.
|
|
67
67
|
|
|
68
68
|
This library provides altogether ~170 transducers, reducers, sequence generators
|
|
69
69
|
(ES6 generators/iterators) and additional supporting functions for composing
|
|
@@ -167,7 +167,7 @@ Note: @thi.ng/api is in _most_ cases a type-only import (not used at runtime)
|
|
|
167
167
|
|
|
168
168
|
## Usage examples
|
|
169
169
|
|
|
170
|
-
|
|
170
|
+
72 projects in this repo's
|
|
171
171
|
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
172
172
|
directory are using this package:
|
|
173
173
|
|
|
@@ -234,6 +234,7 @@ directory are using this package:
|
|
|
234
234
|
| <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) |
|
|
235
235
|
| <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) |
|
|
236
236
|
| <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](http://media.thi.ng/2018/talks/clojurex/index.html) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/talk-slides) |
|
|
237
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/thing-browser.avif" width="240"/> | Tree-based UI to find & explore thi.ng projects via their associated keywords | [Demo](https://demo.thi.ng/umbrella/thing-browser/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/thing-browser) |
|
|
237
238
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/trace-bitmap.jpg" width="240"/> | Multi-layer vectorization & dithering of bitmap images | [Demo](https://demo.thi.ng/umbrella/trace-bitmap/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/trace-bitmap) |
|
|
238
239
|
| <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) |
|
|
239
240
|
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/viz-ridge-lines.avif" width="240"/> | Interactive ridge-line plot | [Demo](https://demo.thi.ng/umbrella/viz-ridge-lines/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/viz-ridge-lines) |
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transducers",
|
|
3
|
-
"version": "9.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "9.0.13",
|
|
4
|
+
"description": "Collection of ~170 lightweight, composable transducers, reducers, generators, iterators for functional data transformations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
7
7
|
"typings": "./index.d.ts",
|
|
@@ -40,22 +40,23 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.11.
|
|
44
|
-
"@thi.ng/arrays": "^2.9.
|
|
45
|
-
"@thi.ng/checks": "^3.6.
|
|
46
|
-
"@thi.ng/compare": "^2.
|
|
47
|
-
"@thi.ng/compose": "^3.0.
|
|
48
|
-
"@thi.ng/errors": "^2.5.
|
|
49
|
-
"@thi.ng/math": "^5.11.
|
|
50
|
-
"@thi.ng/random": "^4.0.
|
|
43
|
+
"@thi.ng/api": "^8.11.8",
|
|
44
|
+
"@thi.ng/arrays": "^2.9.14",
|
|
45
|
+
"@thi.ng/checks": "^3.6.10",
|
|
46
|
+
"@thi.ng/compare": "^2.4.0",
|
|
47
|
+
"@thi.ng/compose": "^3.0.11",
|
|
48
|
+
"@thi.ng/errors": "^2.5.14",
|
|
49
|
+
"@thi.ng/math": "^5.11.6",
|
|
50
|
+
"@thi.ng/random": "^4.0.2"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@microsoft/api-extractor": "^7.47.
|
|
53
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
54
54
|
"esbuild": "^0.23.0",
|
|
55
|
-
"typedoc": "^0.26.
|
|
56
|
-
"typescript": "^5.5.
|
|
55
|
+
"typedoc": "^0.26.5",
|
|
56
|
+
"typescript": "^5.5.4"
|
|
57
57
|
},
|
|
58
58
|
"keywords": [
|
|
59
|
+
"1d",
|
|
59
60
|
"2d",
|
|
60
61
|
"3d",
|
|
61
62
|
"array",
|
|
@@ -69,11 +70,12 @@
|
|
|
69
70
|
"functional",
|
|
70
71
|
"fuzzy",
|
|
71
72
|
"generator",
|
|
72
|
-
"group
|
|
73
|
+
"group",
|
|
73
74
|
"histogram",
|
|
74
75
|
"interleave",
|
|
75
76
|
"interpolation",
|
|
76
77
|
"iterator",
|
|
78
|
+
"kernel",
|
|
77
79
|
"nd",
|
|
78
80
|
"partition",
|
|
79
81
|
"permutation",
|
|
@@ -588,5 +590,5 @@
|
|
|
588
590
|
],
|
|
589
591
|
"year": 2016
|
|
590
592
|
},
|
|
591
|
-
"gitHead": "
|
|
593
|
+
"gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
|
|
592
594
|
}
|