module Faraday::Adapter::EMHttp::Options

def read_body(env)

def read_body(env)
  body = env[:body]
  body.respond_to?(:read) ? body.read : body
end