# File lib/webmock/http_lib_adapters/excon_adapter.rb, line 111 def self.body_from(params) body = params[:body] return body unless body.respond_to?(:read) contents = body.read body.rewind if body.respond_to?(:rewind) contents end