collection-utils
Advanced tools
Comparing version 0.0.10 to 0.0.11
@@ -484,2 +484,5 @@ "use strict"; | ||
} | ||
if (a === undefined || b === undefined || a === null || b === null) { | ||
return false; | ||
} | ||
if (typeof a.equals === "function" && typeof b.equals === "function") { | ||
@@ -486,0 +489,0 @@ return a.equals(b); |
{ | ||
"name": "collection-utils", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"main": "dist/index.js", | ||
@@ -21,3 +21,7 @@ "types": "dist/index.d.ts", | ||
}, | ||
"files": ["package.json", "README.md", "dist/**"] | ||
"files": [ | ||
"package.json", | ||
"README.md", | ||
"dist/**" | ||
] | ||
} |
Sorry, the diff of this file is not supported yet
34497
626