Variable: isVersionAtLeast ​
constisVersionAtLeast: (current,minimum) =>boolean
Defined in: packages/redcap-core/dist/version/compare.d.ts:34
Check if current version is at least the minimum version
Parameters ​
current ​
minimum ​
Returns ​
boolean
Example ​
ts
isVersionAtLeast({ major: 15, minor: 0, patch: 0 }, { major: 14, minor: 5, patch: 10 })
// true