Method: HTTPX::Transcoder::BodyReader#bytesize

Defined in:
lib/httpx/transcoder/utils/body_reader.rb

#bytesizeObject



19
20
21
22
23
# File 'lib/httpx/transcoder/utils/body_reader.rb', line 19

def bytesize
  return @body.bytesize if @body.respond_to?(:bytesize)

  Float::INFINITY
end