(other: Version, ignorePatchUpdate?: boolean)
| 32 | } |
| 33 | |
| 34 | public isGreaterThanOrEqualTo(other: Version, ignorePatchUpdate?: boolean): boolean { |
| 35 | return this.isEqualTo(other, ignorePatchUpdate) || this.isGreaterThan(other, ignorePatchUpdate); |
| 36 | } |
| 37 | |
| 38 | public isLesserThan(other: Version, ignorePatchUpdate?: boolean): boolean { |
| 39 | if (this.major !== other.major) { |
no test coverage detected