class Object

Public Instance Methods

blank?() click to toggle source
# File lib/dominate/inflectors.rb, line 15
def blank?
  respond_to?(:empty?) ? empty? : !self
end
mab(&blk) click to toggle source
# File lib/dominate/mab.rb, line 3
def mab(&blk)
  Mab::Builder.new({}, self, &blk).to_s
end
present?() click to toggle source
# File lib/dominate/inflectors.rb, line 19
def present?
  !blank?
end