class Falcon::Adapters::Input

def each(&block)

@parameter chunk [String]
@yields {|chunk| ...}
Enumerate chunks of the request body.
def each(&block)
	return to_enum unless block_given?
	
	while chunk = gets
		yield chunk
	end
end