mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-09 18:37:50 +00:00
Fix _.isMatchWith test fail.
This commit is contained in:
@@ -2150,8 +2150,11 @@
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
var result = customizer ? customizer(objValue, srcValue, key, object, source) : undefined;
|
var stackA = [],
|
||||||
if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, true) : result)) {
|
stackB = [],
|
||||||
|
result = customizer ? customizer(objValue, srcValue, key, object, source, stackA, stackB) : undefined;
|
||||||
|
|
||||||
|
if (!(result === undefined ? baseIsEqual(srcValue, objValue, customizer, true, stackA, stackB) : result)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user