We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 173802a commit 351cc72Copy full SHA for 351cc72
1 file changed
lib/utils.ts
@@ -131,6 +131,8 @@ function mergeObject<TObject extends Record<string, unknown>>(
131
if (!isMergeableObject(sourceProperty)) {
132
// If source value is any other value we need to set the source value it directly.
133
destination[key] = sourceProperty;
134
+ // eslint-disable-next-line no-continue
135
+ continue;
136
}
137
138
const targetProperty = targetObject?.[key];
0 commit comments