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
43 def call(response, *)
44   URI.decode_www_form(response.to_s).each_with_object({}) do |(field, value), params|
45     HTTPX::Transcoder.normalize_query(params, field, value, PARAM_DEPTH_LIMIT)
46   end
47 end