Transformers for property operations. The keys are property paths (dot-notation), and the values are transformer functions.
{ * getProp: { * name: value => value.trim(), * 'profile.email': value => value.trim().toLowerCase(), * } * } Copy
{ * getProp: { * name: value => value.trim(), * 'profile.email': value => value.trim().toLowerCase(), * } * }
The object type for property path autocomplete.
Optional
Transformers for property operations. The keys are property paths (dot-notation), and the values are transformer functions.
Example