Kanwei Li
Kanwei Li
Passing in something as a boolean false seems to turn into a nil. So: `(println (render "Blah {{boo|str}}" {:boo false}))` prints "Blah" instead of "Blah false" as expected when doing...
My code: ``` (exception/create-exception-middleware (merge exception/default-handlers {:reitit.coercion/request-coercion (fn [_ _] {:status 400 :headers {"Content-Type" "text/plain"} :body "Malformed request - Did not conform to API specifications"})})) ``` Throwing an error anywhere...
Interested in contributing, but ```clj -A:test``` just puts me in a REPL and I don't know how to proceed.
Thanks for the library! We're trying to replace core.memoize with this library, but some of the behavior is unexpected: ``` (def memo-rand-int (memo/memo (fn [] (rand-int 1000)) {mc/cache mc/caffeine}) )...