module HTTPX::Transcoder::Form::Decoder

  1. lib/httpx/transcoder/form.rb

Methods

Public Instance

  1. call

Public Instance methods

call(response, *)
[show source]
   # File lib/httpx/transcoder/form.rb
41 def call(response, *)
42   URI.decode_www_form(response.to_s).each_with_object({}) do |(field, value), params|
43     HTTPX::Transcoder.normalize_query(params, field, value, PARAM_DEPTH_LIMIT)
44   end
45 end