(x: number)
| 111 | |
| 112 | it("does not return -0 when the given dates are the same", () => { |
| 113 | function isNegativeZero(x: number): boolean { |
| 114 | return x === 0 && 1 / x < 0; |
| 115 | } |
| 116 | |
| 117 | const result = differenceInMonths( |
| 118 | new Date(2014, 8 /* Sep */, 5, 0, 0), |