@thi.ng/transducers 8.0.8 → 8.1.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 +633 -350
- package/README.md +2 -1
- package/index.d.ts +1 -0
- package/index.js +1 -0
- package/package.json +567 -559
- package/rechunk.d.ts +47 -0
- package/rechunk.js +34 -0
package/README.md
CHANGED
|
@@ -178,7 +178,7 @@ node --experimental-repl-await
|
|
|
178
178
|
> const transducers = await import("@thi.ng/transducers");
|
|
179
179
|
```
|
|
180
180
|
|
|
181
|
-
Package sizes (gzipped, pre-treeshake): ESM: 9.
|
|
181
|
+
Package sizes (gzipped, pre-treeshake): ESM: 9.53 KB
|
|
182
182
|
|
|
183
183
|
## Dependencies
|
|
184
184
|
|
|
@@ -906,6 +906,7 @@ transduce(map((x) => x*10), push(), range(4))
|
|
|
906
906
|
- [partition](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/partition.ts)
|
|
907
907
|
- [peek](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/peek.ts)
|
|
908
908
|
- [pluck](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/pluck.ts)
|
|
909
|
+
- [rechunk](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rechunk.ts)
|
|
909
910
|
- [rename](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/rename.ts)
|
|
910
911
|
- [sample](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/sample.ts)
|
|
911
912
|
- [scan](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers/src/scan.ts)
|
package/index.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ export * from "./partition-when.js";
|
|
|
95
95
|
export * from "./partition.js";
|
|
96
96
|
export * from "./peek.js";
|
|
97
97
|
export * from "./pluck.js";
|
|
98
|
+
export * from "./rechunk.js";
|
|
98
99
|
export * from "./rename.js";
|
|
99
100
|
export * from "./sample.js";
|
|
100
101
|
export * from "./scan.js";
|
package/index.js
CHANGED
|
@@ -98,6 +98,7 @@ export * from "./partition-when.js";
|
|
|
98
98
|
export * from "./partition.js";
|
|
99
99
|
export * from "./peek.js";
|
|
100
100
|
export * from "./pluck.js";
|
|
101
|
+
export * from "./rechunk.js";
|
|
101
102
|
export * from "./rename.js";
|
|
102
103
|
export * from "./sample.js";
|
|
103
104
|
export * from "./scan.js";
|