// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. import type { SemVer } from "./types.ts"; import { compare } from "./compare.ts"; /** Not equal comparison */ export function neq( s0: SemVer, s1: SemVer, ): boolean { return compare(s0, s1) !== 0; }