Is Nill
Module Info:
moduleType: "internal",
moduleName: "isNill"
Description
The isNill
function receives a value and verifies if it is defined or nill (null or undefined).
Inputs
Name | Type | Required |
---|---|---|
value | any | ✔ |
Outputs
Name | Type |
---|---|
isNill | boolean |
Examples
Inputs | Outputs |
---|---|
value | isNill |
"a string" | false |
"" | false |
undefined | true |
null | true |