(a: string, b: string)
| 24 | } |
| 25 | |
| 26 | export function gte(a: string, b: string): boolean { |
| 27 | if (typeof Bun !== 'undefined') { |
| 28 | return Bun.semver.order(a, b) >= 0 |
| 29 | } |
| 30 | return getNpmSemver().gte(a, b, { loose: true }) |
| 31 | } |
| 32 | |
| 33 | export function lt(a: string, b: string): boolean { |
| 34 | if (typeof Bun !== 'undefined') { |
no test coverage detected