UNPKG

@fedify/fedify

Version:

An ActivityPub server framework

29 lines (28 loc) 860 B
// Copyright 2018-2025 the Deno authors. MIT license. // This module is browser compatible. import { compare } from "./compare.js"; /** * Greater than comparison for two SemVers. * * This is equal to `compare(version1, version2) > 0`. * * @example Usage * ```ts * import { parse, greaterThan } from "@std/semver"; * import { assert } from "@std/assert"; * * const version1 = parse("1.2.3"); * const version2 = parse("1.2.4"); * * assert(greaterThan(version2, version1)); * assert(!greaterThan(version1, version2)); * assert(!greaterThan(version1, version1)); * ``` * * @param version1 The first version to compare * @param version2 The second version to compare * @returns `true` if `version1` is greater than `version2`, `false` otherwise */ export function greaterThan(version1, version2) { return compare(version1, version2) > 0; }