# File lib/hashie/extensions/dash/indifferent_access.rb, line 13
          def property?(name)
            name = translations[name.to_sym] if included_modules.include?(Hashie::Extensions::Dash::PropertyTranslation) && translation_exists?(name)
            name = name.to_s
            !!properties.find { |property| property.to_s == name }
          end