class HTTParty::Decompressor

def zstd

def zstd
  return nil unless defined?(::Zstd)
  begin
    ::Zstd.decompress(body)
  rescue StandardError
    nil
  end
end