import { numberNotEquals as numberNotEqualsValue } from'vest-utils';
// Checks if numeric value is not equal to the given number (with tolerance for floating-point)exportfunctionnumberNotEquals(value: number, n: number | string): boolean {
returnnumberNotEqualsValue(value, n);
}