Checks if the provided value is defined (i.e., not undefined or null).
undefined
null
The type of the value to check.
The value to check. Can be of any type T, undefined, or null.
T
A type guard indicating whether the value is of type T (i.e., not undefined or null).
Generated using TypeDoc
Checks if the provided value is defined (i.e., not
undefined
ornull
).