# File lib/vcard/field.rb, line 371
      def type?(type)
        type = type.to_str

        types = param("TYPE")

        if types
          types = types.detect { |t| t.casecmp(type) == 0 }
        end
      end