class Async::HTTP::DeflateBody

def self.for_request(headers, body, *args)

def self.for_request(headers, body, *args)
	if content_encoding = headers['content-encoding']
		if encoding = ENCODINGS[content_encoding]
			return self.for(body, encoding, *args)
		end
	end
	
	return body
end