The type of the input value.
The value to check.
true if the value is not null and not undefined, false otherwise.
This function is different from isEnvDefined.
isEnvDefined checks if an environment variable is defined and has a non-empty string value.
Alias for
isNonNullish.Checks if a value is "defined" (i.e., not
nulland notundefined). This is a type guard that narrows the type away fromnullandundefined.