Class: String

Inherits:
Object show all
Defined in:
lib/blank.rb

Instance Method Summary collapse

Instance Method Details

#blank?Boolean

Strings are blank if they are empty or include only whitespace



47
48
49
# File 'lib/blank.rb', line 47

def blank?
  strip.empty?
end