Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
segevfiner committed Dec 2, 2024
1 parent 2d4838c commit c1c2792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function deepmergeConstructor (options) {
for (i = 0, il = sourceKeys.length; i < il; ++i) {
isNotPrototypeKey(key = sourceKeys[i]) &&
(
key in target && (targetKeys.indexOf(key) !== -1 &&
key in target && (targetKeys.indexOf(key) !== -1 && // eslint-disable-line no-mixed-operators
((isMergeableObject(key) && cloneProtoObject && Object.getPrototypeOf(source[key]) !== JSON_PROTO && (result[key] = cloneProtoObject(source[key]))) ||
(result[key] = _deepmerge(target[key], source[key]))), true) || // eslint-disable-line no-mixed-operators
(result[key] = clone(source[key]))
Expand Down

0 comments on commit c1c2792

Please sign in to comment.