module Lutaml::Model::Utils

def blank?(value)

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