Skip to main content
Module

std/semver/not_equals.ts

The Deno Standard Library
Latest
File
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.import type { SemVer } from "./types.ts";import { compare } from "./compare.ts";
/** * Not equal comparison * * This is equal to `compare(s0, s1) !== 0`. */export function notEquals(s0: SemVer, s1: SemVer): boolean { return compare(s0, s1) !== 0;}