mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Fix recent typo in isEqual.
Former-commit-id: 84cdf90de59c8184a0ac1f78704f61dcc88c91f1
This commit is contained in:
@@ -2985,7 +2985,7 @@
|
||||
stack.push(a);
|
||||
|
||||
// recursively compare objects and arrays (susceptible to call stack limits)
|
||||
if (arrayLikeClasses[className] || (noArgsClass && isArguments(value))) {
|
||||
if (arrayLikeClasses[className] || (noArgsClass && isArguments(a))) {
|
||||
// compare lengths to determine if a deep comparison is necessary
|
||||
size = a.length;
|
||||
result = size == b.length;
|
||||
|
||||
Reference in New Issue
Block a user