(in-context? request context)
Returns true if the URI of the request is a subpath of the supplied context.
Source
(defn in-context?
"Returns true if the URI of the request is a subpath of the supplied context."
{:added "1.2"}
[request context]
(.startsWith ^String (:uri request) context))