Checks if a value is defined (not undefined).
The value to check
True if the value is not undefined
Checks if a value exists (is neither null nor undefined).
Optionalval: unknownThe value to check
True if the value is not null and not undefined
Checks if a value is strictly equal to false.
The value to check
True if the value is exactly false
Checks if a value is falsy (converts to false in boolean context).
The value to check
True if the value is falsy
Checks if a value is a function.
The value to check
True if the value is a function
Checks if a value is null.
The value to check
True if the value is null
Checks if a string contains another string.
The string to search in
The string to search for
True if thisStr contains queryStr
Checks if a value is strictly equal to true.
The value to check
True if the value is exactly true
Checks if a value is truthy (converts to true in boolean context).
The value to check
True if the value is truthy
Checks if a value is undefined.
The value to check
True if the value is undefined
Checks if a value is defined (not undefined).
The value to check
True if the value is not undefined
Checks if a value exists (is neither null nor undefined).
Optionalval: unknownThe value to check
True if the value is not null and not undefined
Checks if a value is strictly equal to false.
The value to check
True if the value is exactly false
Checks if a value is falsy (converts to false in boolean context).
The value to check
True if the value is falsy
Checks if a value is a function.
The value to check
True if the value is a function
Checks if a value is null.
The value to check
True if the value is null
Checks if a string contains another string.
The string to search in
The string to search for
True if thisStr contains queryStr
Checks if a value is strictly equal to true.
The value to check
True if the value is exactly true
Checks if a value is truthy (converts to true in boolean context).
The value to check
True if the value is truthy
Checks if a value is undefined.
The value to check
True if the value is undefined
Checks if a value is undefined (negated version of defined).
The value to check
True if the value is undefined
Checks if a value does not exist (is null or undefined).
Optionalval: unknownThe value to check
True if the value is null or undefined
Checks if a value is not strictly equal to false.
The value to check
True if the value is not exactly false
Checks if a value is not falsy (negated version of falsy).
The value to check
True if the value is not falsy
Checks if a value is not a function.
The value to check
True if the value is not a function
Checks if a value is not null.
The value to check
True if the value is not null
Checks if a value is not strictly equal to true.
The value to check
True if the value is not exactly true
Checks if a value is not truthy (negated version of truly).
The value to check
True if the value is not truthy
Checks if a value is defined (negated version of undefined).
The value to check
True if the value is not undefined
Checks if a value is defined (not undefined).
The value to check
True if the value is not undefined
Checks if a value exists (is neither null nor undefined).
Optionalval: unknownThe value to check
True if the value is not null and not undefined
Checks if a value is strictly equal to false.
The value to check
True if the value is exactly false
Checks if a value is falsy (converts to false in boolean context).
The value to check
True if the value is falsy
Checks if a value is a function.
The value to check
True if the value is a function
Checks if a value is null.
The value to check
True if the value is null
Checks if a string contains another string.
The string to search in
The string to search for
True if thisStr contains queryStr
Checks if a value is strictly equal to true.
The value to check
True if the value is exactly true
Checks if a value is truthy (converts to true in boolean context).
The value to check
True if the value is truthy
Checks if a value is undefined.
The value to check
True if the value is undefined
Extended interface that includes the base validation methods plus derivative methods. Provides
not,all, andanymodifiers for complex validation scenarios.