scittle

Chris McCormick 2022-07-31T10:24:40.113769Z

@teodorlu you can use this hack - it's not perfect but it makes it easier to inspect objects:

(defn log [& args] (apply js/console.log (clj->js args)) (first args))

👍 1