Basic operators

Type operators

Operators used to perform type operations.


$isBoolean

Checks if a value is a boolean.

{ "$isBoolean": "any" }
expry({ $isBoolean: false }); // true
expry({ $isBoolean: 5 }); // false
expry({ $isBoolean: "hello" }); // false

$isNumber

Checks if a value is a number.

{ "$isNumber": "any" }
expry({ $isNumber: 5 }); // true
expry({ $isNumber: true }); // false
expry({ $isNumber: "hello" }); // false

$isString

Checks if a value is a string.

{ "$isString": "any" }
expry({ $isString: "hello" }); // true
expry({ $isString: 5 }); // false
expry({ $isString: true }); // false

$toBoolean

Converts a value to a boolean.

{ "$toBoolean": "any" }
expry({ $toBoolean: "hello" }); // true
expry({ $toBoolean: "" }); // false
expry({ $toBoolean: 5 }); // true
expry({ $toBoolean: 0 }); // false

$toNumber

Converts a value to a number.

{ "$toNumber": "any" }
expry({ $toNumber: "5" }); // 5
expry({ $toNumber: "hello" }); // NaN

$toString

Converts a value to a string.

{ "$toString": "any" }
expry({ $toString: 5 }); // "5"
expry({ $toString: true }); // "true"