(x: number)
| 105 | |
| 106 | it("does not return -0 when the given dates are the same", () => { |
| 107 | function isNegativeZero(x: number) { |
| 108 | return x === 0 && 1 / x < 0; |
| 109 | } |
| 110 | |
| 111 | const result = differenceInMinutes( |
| 112 | new Date(2014, 8 /* Sep */, 5, 0, 0), |