MCPcopy Create free account
hub / github.com/OneNoteDev/WebClipper / isGreaterThanOrEqualTo

Method isGreaterThanOrEqualTo

src/scripts/versioning/version.ts:34–36  ·  view source on GitHub ↗
(other: Version, ignorePatchUpdate?: boolean)

Source from the content-addressed store, hash-verified

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) {

Callers 2

testsMethod · 0.95
getUpdatesSinceVersionFunction · 0.80

Calls 2

isEqualToMethod · 0.95
isGreaterThanMethod · 0.95

Tested by

no test coverage detected