class String

def blank?

def blank?
  strip.empty?
end

def present?

def present?
  !blank?
end