Method: HTTPX::Response::Body#to_s

Defined in:
lib/httpx/response/body.rb

#to_sObject Also known as: to_str

returns the full response payload as a string.

[View source]

110
111
112
113
114
# File 'lib/httpx/response/body.rb', line 110

def to_s
  return "".b unless @buffer

  @buffer.to_s
end