@saulx/utils
Advanced tools
Comparing version 3.4.1 to 3.4.2
@@ -46,3 +46,2 @@ "use strict"; | ||
} | ||
// maybe not this ? | ||
if (a.checksum || b.checksum) { | ||
@@ -65,6 +64,7 @@ if (a.checksum !== b.checksum) { | ||
const k = b[key]; | ||
if (k === void 0) | ||
const k1 = a[key]; | ||
if (k === void 0 && k1 !== void 0) { | ||
return false; | ||
} | ||
const t = typeof k; | ||
const k1 = a[key]; | ||
// eslint-disable-next-line | ||
@@ -71,0 +71,0 @@ if (t !== typeof k1) { |
{ | ||
"name": "@saulx/utils", | ||
"main": "./dist/index.js", | ||
"version": "3.4.1", | ||
"version": "3.4.2", | ||
"scripts": { | ||
@@ -6,0 +6,0 @@ "build": "tsc", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
95908