new(app, type = true)
public

No documentation available.

# File actionpack/lib/action_dispatch/middleware/best_standards_support.rb, line 3
    def initialize(app, type = true)
      @app = app

      @header = case type
      when true
        "IE=Edge,chrome=1"
      when :builtin
        "IE=Edge"
      when false
        nil
      end
    end