Jonathan Wardell Avery
Results
2
issues of
Jonathan Wardell Avery
The only issue I foresee is the handling of empty dictionary query params. I'm assuming, based on the lack of test coverage, that this isn't a real use case?
In particular ``` (defmacro $ (&rest args) `(kv ,@args)) ``` Could this not be written as follows? ``` (defun $ (&rest args) (apply #'kv args)) ``` It has been a...