isNullishFilled
Type guard that detects an EitherNullishFilled.
Interactive example
Syntax
typescript
function isNullishFilled<
GenericInput extends unknown
>(
input: GenericInput
): input is Extract<GenericInput, EitherNullishFilled>;Parameters
input:Eithercoming fromnullishornullishFilled.
Return value
true if the encapsulated information is defined.
