(other: Version, ignorePatchUpdate?: boolean)
| 46 | } |
| 47 | |
| 48 | public isLesserThanOrEqualTo(other: Version, ignorePatchUpdate?: boolean): boolean { |
| 49 | return this.isEqualTo(other, ignorePatchUpdate) || this.isLesserThan(other, ignorePatchUpdate); |
| 50 | } |
| 51 | |
| 52 | public toString(): string { |
| 53 | return this.stringRepresentation; |
no test coverage detected