mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
30 lines
895 B
TypeScript
30 lines
895 B
TypeScript
// 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 for two SemVers.
|
|
*
|
|
* This is equal to `compare(version1, version2) !== 0`.
|
|
*
|
|
* @example Usage
|
|
* ```ts
|
|
* import { parse, notEquals } from "@std/semver";
|
|
* import { assert } from "@std/assert";
|
|
*
|
|
* const version1 = parse("1.2.3");
|
|
* const version2 = parse("1.2.4");
|
|
*
|
|
* assert(notEquals(version1, version2));
|
|
* assert(!notEquals(version1, version1));
|
|
* ```
|
|
*
|
|
* @param version1 The first version to compare
|
|
* @param version2 The second version to compare
|
|
* @returns `true` if `version1` is not equal to `version2`, `false` otherwise
|
|
*/
|
|
export function notEquals(version1: SemVer, version2: SemVer): boolean {
|
|
return compare(version1, version2) !== 0;
|
|
}
|