Skip to content

Commit d00d99d

Browse files
committed
Fix Zero Special case
1 parent fdabc54 commit d00d99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function fixMantissa(mantissa){
181181
detectedSpecialCase = "Denormalized";
182182
}
183183

184-
if(mantissa === 0){
184+
if(mantissa == 0){
185185
output.s_cases = "zero";
186186
detectedSpecialCase = "Zero";
187187
}

0 commit comments

Comments
 (0)