Method: Rack::ShowStatus#h

Defined in:
lib/rack/show_status.rb

#h(obj) ⇒ Object

:nodoc:



54
55
56
57
58
59
60
61
# File 'lib/rack/show_status.rb', line 54

def h(obj)                  # :nodoc:
  case obj
  when String
    Utils.escape_html(obj)
  else
    Utils.escape_html(obj.inspect)
  end
end