Indicates if a passed value is an Array; does not ensure that the Array is valid.
The value to check the type of.
True if the passed value is an Array, otherwise false.
Indicates if a passed value is a boolean value.
The value to check the type of.
True if the passed value is a boolean, otherwise false.
Indicates if a passed value is a CustomType.
The value to check the type of.
True if the passed value is a CustomType, otherwise false.
Indicates if a passed value is a Date; does not ensure that the Date is valid.
The value to check the type of.
True if the passed value is an Array, otherwise false.
Indicates if a passed value is an empty array.
The value to check the type of.
True if the passed value is an empty array, otherwise false.
Indicates if a passed value is an empty object.
The value to check the type of.
True if the passed value is an empty object, otherwise false.
Indicates if a passed value is a function.
The value to check the type of.
True if the passed value is a function, otherwise false.
Indicates if a passed value is a LogLevelType.
The value to check the type of.
True if the passed value is a LogLevelType, otherwise false.
Indicates if a passed value is not an Array.
The value to check the type of.
True if the passed value is not an Array, otherwise false.
Indicates if a passed value is not a boolean value.
The value to check the type of.
True if the passed value is not a boolean, otherwise false.
Indicates if a passed value is not a CustomType.
The value to check the type of.
True if the passed value is not a CustomType, otherwise false.
Indicates if a passed value is not a Date; does not ensure that the Date is valid.
The value to check the type of.
True if the passed value is not a Date, otherwise false.
Indicates if a passed value is an non-empty array.
The value to check the type of.
True if the passed value is a non-empty array, otherwise false.
Indicates if a passed value is not an empty object.
The value to check the type of.
True if the passed value is not an empty object, otherwise false.
Indicates if a passed value is not a function.
The value to check the type of.
True if the passed value is not a function, otherwise false.
Indicates if a passed value is not a LogLevelType.
The value to check the type of.
True if the passed value is not a LogLevelType, otherwise false.
Indicates if a passed value is not null.
The value to check the type of.
True if the passed value is not null, otherwise false.
Indicates if a passed value is neither null nor undefined. See isNotNull and isNotUndefined
The value to check the type of.
True if the value is neither null nor undefined, otherwise false.
Indicates if a passed value is not a number.
The value to check the type of.
True if the passed value is not a number, otherwise false.
Indicates if a passed value is not an object.
The value to check the type of.
True if the passed value is not an object, otherwise false.
Indicates if a passed value is not a string.
The value to check the type of.
True if the passed value is not a string, otherwise false.
Indicates if a passed value is not undefined.
The value to check the type of.
True if the passed value is not undefined, otherwise false.
Indicates if a passed value is null.
The value to check the type of.
True if the passed value is null, otherwise false.
Indicates if a passed value is null or undefined. See isNull and isUndefined
The value to check the type of
True if the value is null or undefined, otherwise false.
Indicates if a passed value is a number.
The value to check the type of.
True if the passed value is a number, otherwise false.
Indicates if a passed value is an object.
The value to check the type of.
True if the passed value is an object, otherwise false.
Indicates if a passed value is both an object and not empty object. See isObject and
isNotEmptyObject.
The value to check the type of.
True if the passed value is both an object and not empty, otherwise false.
Indicates if a passed value is a string.
The value to check the type of.
True if the passed value is a string, otherwise false.
Indicates if a passed value is undefined.
The value to check the type of.
True if the passed value is undefined, otherwise false.
Generated using TypeDoc
Utility class containing a bunch of helper methods for commonly used type interactions and other methods as
shortcuts. While TypeScript does enforce typing, this utility class is designed to help make sure that code
executes as expected during run-time, after having been compiled to JavaScript.