Basic operators
Comparison operators
Operators used to perform comparison operations.
$cmp
Compares two values and returns -1 if the first is less than the second, 1 if the first is greater than the second, and 0 if the two values are equal.
{ "$cmp": ["number", "number"] }
expry({ $cmp: [3, 5] }); // -1
expry({ $cmp: [5, 3] }); // 1
expry({ $cmp: [5, 5] }); // 0
$eq
Compares two values and returns true if they are equal.
{ "$eq": ["any", "any"] }
expry({ $eq: [3, 3] }); // true
expry({ $eq: ["hello", "bye"] }); // false
$gt
Compares two values and returns true if the first is greater than the second.
{ "$gt": ["number", "number"] }
expry({ $gt: [5, 3] }); // true
expry({ $gt: [3, 5] }); // false
expry({ $gt: [3, 3] }); // false
$gte
Compares two values and returns true if the first is greater than or equal to the second.
{ "$gte": ["number", "number"] }
expry({ $gte: [5, 3] }); // true
expry({ $gte: [3, 5] }); // false
expry({ $gte: [3, 3] }); // true
$lt
Compares two values and returns true if the first is less than the second.
{ "$lt": ["number", "number"] }
expry({ $lt: [3, 5] }); // true
expry({ $lt: [5, 3] }); // false
expry({ $lt: [3, 3] }); // false
$lte
Compares two values and returns true if the first is less than or equal to the second.
{ "$lte": ["number", "number"] }
expry({ $lte: [3, 5] }); // true
expry({ $lte: [5, 3] }); // false
expry({ $lte: [3, 3] }); // true
$ne
Compares two values and returns true if they are not equal.
{ "$ne": ["any", "any"] }
expry({ $ne: [3, 3] }); // false
expry({ $ne: ["hello", "bye"] }); // true