module Rack::Utils

def unescape_path(s)

Experimental RBS support (using type sampling data from the type_fusion project).

def unescape_path: (String s) -> String

This signature was generated using 2 samples from 1 application.

unescaping query parameters or form components.
Unescapes the **path** component of a URI. See Rack::Utils.unescape for
def unescape_path(s)
  ::URI::DEFAULT_PARSER.unescape s
end