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
I have searched existing issues to ensure the feature has not already been requested
🚀 Feature Proposal
Export the private function isMergeableObject so that it can be easily extended when adding functionality?
There is also no documentation indicating the behavior that it's being overwritten and what the base configuration is meant to do.
so instead of defining:
constcustomDeepMergeOptions: Options={isMergeableObject: functionnewIsMergeableObject(value): boolean{// Default Logic from the Base Options it's not inheritable.returntypeofvalue==='object'&&value!==null&&!(valueinstanceofRegExp)&&!(valueinstanceofDate)// Custom Overrides&&!(valueinstanceofFormData);}}
it can be defined like so getting any future changes to the functionality:
Prerequisites
🚀 Feature Proposal
Export the private function
isMergeableObject
so that it can be easily extended when adding functionality?There is also no documentation indicating the behavior that it's being overwritten and what the base configuration is meant to do.
so instead of defining:
it can be defined like so getting any future changes to the functionality:
Motivation
No response
Example
No response
The text was updated successfully, but these errors were encountered: