You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ The `options` argument is a superset of the options defined for [object-hash](ht
122
122
123
123
- `useToJsonTransform` - if true, only use JSON-serializable properties when computing hashes, equality, etc. (default: false)
124
124
125
-
> _NOTE: This setting overrides both `transformer` and `mapValueTransformer`_
125
+
> _NOTE: This transform will always be applied BEFORE `transformer` and `mapValueTransformer`, if applicable._
126
126
127
127
```typescript
128
128
classA {
@@ -140,6 +140,20 @@ The `options` argument is a superset of the options defined for [object-hash](ht
140
140
set.size; // 1
141
141
```
142
142
143
+
- `caseInsensitive` - If true, all string values--including keys/values within objects and arrays--will be evaluated as case-insensitive. (default: false)
144
+
145
+
> _NOTE: This transform will always be applied AFTER `transformer` and `mapValueTransformer`, if applicable. For objects, it will be applied before `replacer` (from object-hash options)._
0 commit comments