Skip to content

Commit 41b2697

Browse files
Update lib/internal/util/comparisons.js
Co-authored-by: Ruben Bridgewater <[email protected]>
1 parent f406183 commit 41b2697

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/util/comparisons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ function objectComparisonStart(val1, val2, mode, memos) {
247247
return false;
248248
}
249249
} else if (mode === kLoose &&
250-
(isFloat16Array(val1) || isFloat32Array(val1) || isFloat64Array(val1))) {
250+
(isFloat32Array(val1) || isFloat64Array(val1) || isFloat16Array(val1))) {
251251
if (!areSimilarFloatArrays(val1, val2)) {
252252
return false;
253253
}

0 commit comments

Comments
 (0)