class Object

Public Instance Methods

blank?() click to toggle source
# File lib/lobbyliste/core_ext/string.rb, line 2
def blank?
  respond_to?(:empty?) ? !!empty? : !self
end