Fork me on GitHub
#cider
<
2021-05-18
>
ag19:05:52

What's the best way of "normalizing" ns declarations? i.e., I have something like this:

(:require [foo
           [core]
           [utils]])

;;; I want to convert that into:
(:require [foo.core]
          [foo.utils])