# File lib/thin/response.rb, line 83 def each yield head if @body.is_a?(String) yield @body else @body.each { |chunk| yield chunk } end end