(urlencoded-form? request)
True if a request contains a urlencoded form in the body.
Source
(defn urlencoded-form?
"True if a request contains a urlencoded form in the body."
{:added "1.3"}
[request]
(if-let [^String type (content-type request)]
(.startsWith type "application/x-www-form-urlencoded")))