module ActionDispatch::Http::MimeNegotiation

def format_from_path_extension # :doc:

:doc:
def format_from_path_extension # :doc:
  path = get_header("action_dispatch.original_path") || get_header("PATH_INFO")
  if match = path && path.match(/\.(\w+)\z/)
    Mime[match.captures.first]
  end
end