(monthAndYear: MonthAndYear)
| 62 | } |
| 63 | |
| 64 | public isAfter(monthAndYear: MonthAndYear): boolean { |
| 65 | return compareMonthAndYear(this, monthAndYear) > 0; |
| 66 | } |
| 67 | |
| 68 | public isSame(monthAndYear: MonthAndYear): boolean { |
| 69 | return compareMonthAndYear(this, monthAndYear) === 0; |
no test coverage detected