mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
period.
This commit is contained in:
@@ -528,7 +528,7 @@
|
||||
if (a == b) return true;
|
||||
// One is falsy and the other truthy.
|
||||
if ((!a && b) || (a && !b)) return false;
|
||||
// Unwrap any wrapped objects
|
||||
// Unwrap any wrapped objects.
|
||||
if (a._chain) a = a.value();
|
||||
if (b._chain) b = b.value();
|
||||
// One of them implements an isEqual()?
|
||||
|
||||
Reference in New Issue
Block a user