@thi.ng/transducers-async 0.4.26 → 0.4.28

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-08-04T09:13:01Z
3
+ - **Last updated**: 2025-09-25T11:10:32Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/README.md CHANGED
@@ -116,7 +116,7 @@ For Node.js REPL:
116
116
  const txa = await import("@thi.ng/transducers-async");
117
117
  ```
118
118
 
119
- Package sizes (brotli'd, pre-treeshake): ESM: 3.25 KB
119
+ Package sizes (brotli'd, pre-treeshake): ESM: 3.24 KB
120
120
 
121
121
  ## Dependencies
122
122
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/transducers-async",
3
- "version": "0.4.26",
3
+ "version": "0.4.28",
4
4
  "description": "Async versions of various highly composable transducers, reducers and iterators",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,17 +39,17 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.12.1",
43
- "@thi.ng/buffers": "^1.0.20",
44
- "@thi.ng/checks": "^3.7.17",
45
- "@thi.ng/compose": "^3.0.38",
46
- "@thi.ng/errors": "^2.5.41",
47
- "@thi.ng/timestamp": "^1.1.20",
48
- "@thi.ng/transducers": "^9.6.8"
42
+ "@thi.ng/api": "^8.12.2",
43
+ "@thi.ng/buffers": "^1.0.21",
44
+ "@thi.ng/checks": "^3.7.18",
45
+ "@thi.ng/compose": "^3.0.39",
46
+ "@thi.ng/errors": "^2.5.42",
47
+ "@thi.ng/timestamp": "^1.1.21",
48
+ "@thi.ng/transducers": "^9.6.10"
49
49
  },
50
50
  "devDependencies": {
51
- "esbuild": "^0.25.8",
52
- "typedoc": "^0.28.9",
51
+ "esbuild": "^0.25.9",
52
+ "typedoc": "^0.28.12",
53
53
  "typescript": "^5.9.2"
54
54
  },
55
55
  "keywords": [
@@ -211,5 +211,5 @@
211
211
  "status": "alpha",
212
212
  "year": 2018
213
213
  },
214
- "gitHead": "f6ebc1302dc9211d588293aa0897173c6e54f4e5\n"
214
+ "gitHead": "b7ede4f099767e0175ea8e09257208f73970b220\n"
215
215
  }
package/source.js CHANGED
@@ -13,7 +13,7 @@ const source = (initial, buffer = 1) => {
13
13
  });
14
14
  };
15
15
  newPromise();
16
- const gen = async function* () {
16
+ const gen = (async function* () {
17
17
  while (true) {
18
18
  const val = await promise;
19
19
  last = val;
@@ -23,7 +23,7 @@ const source = (initial, buffer = 1) => {
23
23
  if (queue.readable()) resolve(queue.read());
24
24
  }
25
25
  state = 2;
26
- }();
26
+ })();
27
27
  gen.write = (x) => {
28
28
  if (state > 0) return;
29
29
  if (resolve) {