(x5, y6)
| 2380 | return x5 < 0 ? -1 : 1; |
| 2381 | } |
| 2382 | function modulo(x5, y6) { |
| 2383 | const signMightNotMatch = x5 % y6; |
| 2384 | if (sign(y6) !== sign(signMightNotMatch)) { |
| 2385 | return signMightNotMatch + y6; |
| 2386 | } |
| 2387 | return signMightNotMatch; |
| 2388 | } |
| 2389 | function censorNegativeZero(x5) { |
| 2390 | return x5 === 0 ? 0 : x5; |
| 2391 | } |
no test coverage detected