class Protocol::Rack::Body::Enumerable

def empty?

Whether the body is empty.
def empty?
	@length == 0 or (@body.respond_to?(:empty?) and @body.empty?)
end