class Object

Public Instance Methods

blank?() click to toggle source

Objects are blank if they respond true to empty?

# File lib/blank.rb, line 28
def blank?
  respond_to?(:empty?) && empty?
end