@thi.ng/compose 2.0.7 → 2.0.8

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
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.8](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@2.0.7...@thi.ng/compose@2.0.8) (2021-11-10)
7
+
8
+ **Note:** Version bump only for package @thi.ng/compose
9
+
10
+
11
+
12
+
13
+
6
14
  ## [2.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/compose@2.0.6...@thi.ng/compose@2.0.7) (2021-11-03)
7
15
 
8
16
  **Note:** Version bump only for package @thi.ng/compose
package/README.md CHANGED
@@ -50,7 +50,7 @@ node --experimental-repl-await
50
50
  > const compose = await import("@thi.ng/compose");
51
51
  ```
52
52
 
53
- Package sizes (gzipped, pre-treeshake): ESM: 825 bytes
53
+ Package sizes (gzipped, pre-treeshake): ESM: 871 bytes
54
54
 
55
55
  ## Dependencies
56
56
 
package/juxt.js CHANGED
@@ -20,7 +20,7 @@ export function juxt(...fns) {
20
20
  default:
21
21
  return (x) => {
22
22
  let res = new Array(fns.length);
23
- for (let i = fns.length; --i >= 0;) {
23
+ for (let i = fns.length; i-- > 0;) {
24
24
  res[i] = fns[i](x);
25
25
  }
26
26
  return res;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/compose",
3
- "version": "2.0.7",
3
+ "version": "2.0.8",
4
4
  "description": "Optimized functional composition helpers",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -34,7 +34,7 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.1.0",
37
+ "@thi.ng/api": "^8.2.0",
38
38
  "@thi.ng/errors": "^2.0.6"
39
39
  },
40
40
  "devDependencies": {
@@ -100,5 +100,5 @@
100
100
  "import": "./trampoline.js"
101
101
  }
102
102
  },
103
- "gitHead": "852cd2450617c86d15d18477dc634f17f04202eb"
103
+ "gitHead": "5fe52419af63984ebe53032201b2a6174b9cb159"
104
104
  }