fnando/browser

View on GitHub
lib/browser/meta/proxy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Browser
  module Meta
    class Proxy < Base
      def meta
        "proxy" if browser.proxy?
      end
    end
  end
end