# File lib/more/facets/uri.rb, line 69
  def hash_to_query(parameters)
    return '' unless parameters
    pairs = []
    parameters.each do |param, value|
      pairs << "#{param}=#{cgi_escape(value.to_s)}"
    end
    return pairs.join(KEY_VALUE_SEPARATOR)
  end