@bb-labs/deep-equal 0.0.11 → 0.0.13

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.
Files changed (2) hide show
  1. package/README.md +1 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -32,7 +32,6 @@ This helper does two important things:
32
32
 
33
33
  1. Runs values through **SuperJSON** so things like `Date`, `BigInt`, `Map`, `Set`, etc. end up in a consistent, JSON-safe shape.
34
34
  2. **Recursively normalizes** that shape:
35
-
36
35
  - Arrays are **sorted** by their JSON representation → order no longer matters.
37
36
  - Object keys are **sorted** so key order never affects equality.
38
37
 
@@ -48,7 +47,7 @@ Deep equality check with:
48
47
 
49
48
  - SuperJSON-aware serialization
50
49
  - Order-insensitive arrays
51
- - Stable object key orderingg
50
+ - Stable object key ordering
52
51
 
53
52
  ```ts
54
53
  import { isDeepEqual } from "@bigbang-sdk/local-db";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bb-labs/deep-equal",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "npm": true,
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@bb-labs/bldr": "^0.0.16",
27
- "@bb-labs/deep-sort": "0.0.9",
27
+ "@bb-labs/deep-sort": "0.0.10",
28
28
  "@bb-labs/tsconfigs": "^0.0.4",
29
29
  "fast-deep-equal": "^3.1.3",
30
30
  "superjson": "^2.2.6"