module Hashie::Extensions::Dash::IndifferentAccess::ClassMethods

def property?(name)

defined.
Check to see if the specified property has already been
def property?(name)
  name = translations[name.to_sym] if translation_for?(name)
  name = name.to_s
  !!properties.find { |property| property.to_s == name }
end