module Hashie::Extensions::Dash::PropertyTranslation::InstanceMethods

def property_exists?(property)

Raises an NoMethodError if the property doesn't exist
def property_exists?(property)
  fail_no_property_error!(property) unless self.class.property?(property)
  true
end