@thi.ng/equiv 2.0.2 → 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,15 +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.2](https://github.com/thi-ng/umbrella/compare/@thi.ng/equiv@2.0.1...@thi.ng/equiv@2.0.2) (2021-10-15)
7
-
8
- **Note:** Version bump only for package @thi.ng/equiv
9
-
10
-
11
-
12
-
13
-
14
- ## [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)
15
7
 
16
8
  **Note:** Version bump only for package @thi.ng/equiv
17
9
 
@@ -48,20 +40,20 @@ Also:
48
40
 
49
41
 
50
42
 
51
- # [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)
52
44
 
53
- ### Build System
45
+ ### Build System
54
46
 
55
- - 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))
56
48
 
57
- ### BREAKING CHANGES
49
+ ### BREAKING CHANGES
58
50
 
59
- - enabled multi-outputs (ES6 modules, CJS, UMD)
60
- - build scripts now first build ES6 modules in package root, then call `scripts/bundle-module` to build minified CJS & UMD bundles in `/lib`
61
- - 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.
62
54
 
63
- # 0.1.0 (2018-05-10)
55
+ # 0.1.0 (2018-05-10)
64
56
 
65
- ### Features
57
+ ### Features
66
58
 
67
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.2",
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",
@@ -34,7 +34,7 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "devDependencies": {
37
- "@thi.ng/testament": "^0.1.2"
37
+ "@thi.ng/testament": "^0.1.6"
38
38
  },
39
39
  "keywords": [
40
40
  "array",
@@ -63,5 +63,5 @@
63
63
  "import": "./index.js"
64
64
  }
65
65
  },
66
- "gitHead": "3c5f903104da150588946a94bb118ad559ad395d"
66
+ "gitHead": "5fe52419af63984ebe53032201b2a6174b9cb159"
67
67
  }