method
blank?
blank?()
public
An object is blank if itβs false, empty, or a whitespace string. For example, false, β, β β, nil, [], and {} are all blank.
This simplifies
!address || address.empty?
to
address.blank?
@return [true, false]