Skip to content

Commit

Permalink
chore: Fix typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhamlin committed Dec 10, 2022
1 parent 7b9f3f8 commit 1f7dbe6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ The `options` argument is a superset of the options defined for [object-hash](ht
const map2 = new DeepMap([[1, b]], { mapValueTransformer });
map1.equals(map2); // true

[...map1.entries()]; // [[1, { val: 1, other: 2 }]]
[...map1.entries()]; // [[1, { val: 1, other: 1 }]]
[...map2.entries()]; // [[1, { val: 1, other: 2 }]]
```
- `useToJsonTransform` - if true, only use JSON-serializable properties when computing hashes, equality, etc. (default: false)
Expand Down

0 comments on commit 1f7dbe6

Please sign in to comment.