class Object
Public Instance Methods
blank?()
click to toggle source
# File lib/mozzn/extensions.rb, line 3 def blank? respond_to?(:empty?) ? empty? : !self end
present?()
click to toggle source
# File lib/mozzn/extensions.rb, line 7 def present? !blank? end