module Rack::Utils

def valid_path?(path)

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

def valid_path?: (String path) -> untyped

This signature was generated using 2 samples from 1 application.

def valid_path?(path)
  path.valid_encoding? && !path.include?(NULL_BYTE)
end