@thi.ng/equiv 2.0.6 → 2.0.7

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,47 +3,7 @@
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.6](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.5...@thi.ng/equiv@2.0.6) (2021-10-28)
7
-
8
- **Note:** Version bump only for package @thi.ng/equiv
9
-
10
-
11
-
12
-
13
-
14
- ## [2.0.5](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.4...@thi.ng/equiv@2.0.5) (2021-10-28)
15
-
16
- **Note:** Version bump only for package @thi.ng/equiv
17
-
18
-
19
-
20
-
21
-
22
- ## [2.0.4](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.3...@thi.ng/equiv@2.0.4) (2021-10-25)
23
-
24
- **Note:** Version bump only for package @thi.ng/equiv
25
-
26
-
27
-
28
-
29
-
30
- ## [2.0.3](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.2...@thi.ng/equiv@2.0.3) (2021-10-15)
31
-
32
- **Note:** Version bump only for package @thi.ng/equiv
33
-
34
-
35
-
36
-
37
-
38
- ## [2.0.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.1...@thi.ng/equiv@2.0.2) (2021-10-15)
39
-
40
- **Note:** Version bump only for package @thi.ng/equiv
41
-
42
-
43
-
44
-
45
-
46
- ## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.0...@thi.ng/equiv@2.0.1) (2021-10-13)
6
+ ## [2.0.7](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.6...@thi.ng/equiv@2.0.7) (2021-11-10)
47
7
 
48
8
  **Note:** Version bump only for package @thi.ng/equiv
49
9
 
@@ -80,20 +40,20 @@ Also:
80
40
 
81
41
 
82
42
 
83
- # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@0.1.15...@thi.ng/equiv@1.0.0) (2019-01-21)
43
+ # [1.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@0.1.15...@thi.ng/equiv@1.0.0) (2019-01-21)
84
44
 
85
- ### Build System
45
+ ### Build System
86
46
 
87
- - update package build scripts & outputs, imports in ~50 packages ([b54b703](https://github.com/thi-ng/umbrella/commit/b54b703))
47
+ - update package build scripts & outputs, imports in ~50 packages ([b54b703](https://github.com/thi-ng/umbrella/commit/b54b703))
88
48
 
89
- ### BREAKING CHANGES
49
+ ### BREAKING CHANGES
90
50
 
91
- - enabled multi-outputs (ES6 modules, CJS, UMD)
92
- - build scripts now first build ES6 modules in package root, then call `scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
93
- - all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.
51
+ - enabled multi-outputs (ES6 modules, CJS, UMD)
52
+ - build scripts now first build ES6 modules in package root, then call `scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
53
+ - all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.
94
54
 
95
- # 0.1.0 (2018-05-10)
55
+ # 0.1.0 (2018-05-10)
96
56
 
97
- ### Features
57
+ ### Features
98
58
 
99
59
  - **equiv:** add new package [@thi](https://github.com/thi).ng/equiv ([6d12ae0](https://github.com/thi-ng/umbrella/commit/6d12ae0))
package/README.md CHANGED
@@ -63,7 +63,7 @@ node --experimental-repl-await
63
63
  > const equiv = await import("@thi.ng/equiv");
64
64
  ```
65
65
 
66
- Package sizes (gzipped, pre-treeshake): ESM: 487 bytes
66
+ Package sizes (gzipped, pre-treeshake): ESM: 488 bytes
67
67
 
68
68
  ## Dependencies
69
69
 
package/index.js CHANGED
@@ -53,7 +53,7 @@ export const equiv = (a, b) => {
53
53
  export const equivArrayLike = (a, b, _equiv = equiv) => {
54
54
  let l = a.length;
55
55
  if (l === b.length) {
56
- while (--l >= 0 && _equiv(a[l], b[l]))
56
+ while (l-- > 0 && _equiv(a[l], b[l]))
57
57
  ;
58
58
  }
59
59
  return l < 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/equiv",
3
- "version": "2.0.6",
3
+ "version": "2.0.7",
4
4
  "description": "Extensible deep value equivalence checking for any data types",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -63,5 +63,5 @@
63
63
  "import": "./index.js"
64
64
  }
65
65
  },
66
- "gitHead": "c17a556ad25f6882dfa8f806a1d9e8ed7ac7cd71"
66
+ "gitHead": "5fe52419af63984ebe53032201b2a6174b9cb159"
67
67
  }