Method: HTTPX::Response::Body#to_s
- Defined in:
- lib/httpx/response/body.rb
permalink #to_s ⇒ Object Also known as: to_str
returns the full response payload as a string.
110 111 112 113 114 |
# File 'lib/httpx/response/body.rb', line 110 def to_s return "".b unless @buffer @buffer.to_s end |