// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import type { SemVer } from "./types.ts"; import { compare } from "./compare.ts"; /** * Greater than or equal to comparison * * This is equal to `compare(s0, s1) >= 0`. */ export function greaterOrEqual(s0: SemVer, s1: SemVer): boolean { return compare(s0, s1) >= 0; }