@thi.ng/transducers-patch 0.4.181 → 0.4.183

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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 210 standalone projects, maintained as part
10
+ > This is one of 211 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -65,7 +65,7 @@ For Node.js REPL:
65
65
  const tp = await import("@thi.ng/transducers-patch");
66
66
  ```
67
67
 
68
- Package sizes (brotli'd, pre-treeshake): ESM: 497 bytes
68
+ Package sizes (brotli'd, pre-treeshake): ESM: 496 bytes
69
69
 
70
70
  ## Dependencies
71
71
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/transducers-patch",
3
- "version": "0.4.181",
3
+ "version": "0.4.183",
4
4
  "description": "Reducers for patch-based, immutable-by-default array & object editing",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -39,11 +39,11 @@
39
39
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@thi.ng/api": "^8.12.8",
43
- "@thi.ng/checks": "^3.7.24",
44
- "@thi.ng/errors": "^2.5.48",
45
- "@thi.ng/paths": "^5.2.27",
46
- "@thi.ng/transducers": "^9.6.17"
42
+ "@thi.ng/api": "^8.12.10",
43
+ "@thi.ng/checks": "^3.8.0",
44
+ "@thi.ng/errors": "^2.5.50",
45
+ "@thi.ng/paths": "^5.2.29",
46
+ "@thi.ng/transducers": "^9.6.19"
47
47
  },
48
48
  "devDependencies": {
49
49
  "esbuild": "^0.27.0",
@@ -88,5 +88,5 @@
88
88
  "status": "alpha",
89
89
  "year": 2020
90
90
  },
91
- "gitHead": "be6e7657b1e5c54d7d648d1b52888a7297e95a17\n"
91
+ "gitHead": "824bf9047b5a10f777c5c5b4aeecf0c750a22c75\n"
92
92
  }
package/patch-array.js CHANGED
@@ -47,7 +47,7 @@ function patchArray(...args) {
47
47
  if (isString(x[0])) {
48
48
  acc = edit(acc, x);
49
49
  } else {
50
- for (let e of x) {
50
+ for (const e of x) {
51
51
  acc = edit(acc, e);
52
52
  }
53
53
  }
package/patch-obj.js CHANGED
@@ -23,7 +23,7 @@ function patchObj(init, patches) {
23
23
  if (isString(x[0])) {
24
24
  acc = edit(acc, x);
25
25
  } else {
26
- for (let e of x) {
26
+ for (const e of x) {
27
27
  acc = edit(acc, e);
28
28
  }
29
29
  }