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