global

def isempty?(value)

def isempty?(value)
  value.respond_to?(:empty?) ? !!value.empty? : !value
end