# File lib/cgikit/bytedata.rb, line 53
    def bytes( length = nil )
      if length then
        @bytes.slice(0, length)
      else
        @bytes.to_s
      end
    end