-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
93cb255
commit 439ce6b
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** @format */ | ||
|
||
import { EvaluatorFunction } from '../../types'; | ||
import { isNonNull } from '../../utils'; | ||
|
||
/** | ||
* @description | ||
* Method to check if a given value is not equal to a stored property | ||
* | ||
* @param { any } condition - Value to check for being not equal | ||
* @returns { EvaluatorFunction } | ||
*/ | ||
|
||
export const NotEqual = (...condition: any): EvaluatorFunction => { | ||
return (value: unknown, propName?: string) => { | ||
if (!isNonNull(value)) { | ||
throw new TypeError(`[Query] Property ${propName} is null or undefined.`); | ||
} | ||
|
||
return condition !== value; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters