(other: Version, ignorePatchUpdate?: boolean)
| 18 | } |
| 19 | |
| 20 | public isEqualTo(other: Version, ignorePatchUpdate?: boolean): boolean { |
| 21 | return this.major === other.major && this.minor === other.minor && (ignorePatchUpdate || this.patch === other.patch); |
| 22 | } |
| 23 | |
| 24 | public isGreaterThan(other: Version, ignorePatchUpdate?: boolean): boolean { |
| 25 | if (this.major !== other.major) { |
no outgoing calls
no test coverage detected