Fork me on GitHub
#specter
<
2017-02-24
>
qqq21:02:54

Is there a simple way to rewrite the following without specter? (need to eliminate the dependency)

(fn [x]
  (s/select (s/walker keyword?) x)
I want to rewrite the above using just clojure core

nathanmarz21:02:19

@qqq you can use clojure.walk, which is what walker uses underneath the hood