@nexcodepl/store
Advanced tools
+12
-0
| export function compare(a, b, compareDepth) { | ||
| if (a === null && b !== null) | ||
| return false; | ||
| if (a !== null && b === null) | ||
| return false; | ||
| if (a === null && b === null) | ||
| return true; | ||
| if (a === undefined && b !== undefined) | ||
| return false; | ||
| if (a !== undefined && b === undefined) | ||
| return false; | ||
| if (a === undefined && b === undefined) | ||
| return true; | ||
| if (typeof a !== typeof b) | ||
@@ -3,0 +15,0 @@ return false; |
+1
-1
| { | ||
| "name": "@nexcodepl/store", | ||
| "version": "1.0.8", | ||
| "version": "1.0.9", | ||
| "description": "State management library", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
11027
3.41%259
4.86%