Skip to content

Commit

Permalink
release v5.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saqqdy committed Oct 23, 2023
1 parent 4038173 commit eee2a8b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/isEqual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import isArray from './isArray'
const eq = function (a: any, b: any, aStack?: any[], bStack?: any[]) {
// Identical objects are equal. `0 === -0`, but they aren't identical.
// See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal).
// @ts-expect-error: fix in next version
if (a === b) return a !== 0 || 1 / a === 1 / b
// A strict comparison is necessary because `null == undefined`.
if (a == null || b == null) return a === b
Expand Down

0 comments on commit eee2a8b

Please sign in to comment.