# File lib/couchrest/helper/streamer.rb, line 45
    def parse_line line
      return nil unless line
      if /(\{.*\}),?/.match(line.chomp)
        MultiJson.decode($1)
      end
    end