class NoCompression
  # Compress string
  def compress(string)
    # do nothing
    string
  end
end
