Returns true if a value is null, an empty string, or a string
containing only whitespace.
Returns false for all other values including 0 and false.
Examples
isblank(null) → true
isblank('') → true
isblank(' ') → true
isblank('hello') → false
isblank(0) → false