releases

A place to post minor releases of libraries and projects that you would not otherwise post in #announcements
pez 2021-03-17T21:45:31.001400Z

taplet 0.1.1 just released. Now let> taps the bindings more readably, I think:

(let> [x 1
       {:keys [z] :as y} {:z 2}
       [a [b {:keys [c d]}]] [:foo [:bar {:c :baz :d :gaz}]]]
      [x z y a b c d])

=> [1 2 {:z 2} :foo :bar :baz :gaz]

tap> [[x 1]
      [y
       {:z 2}]
      [z 2]
      [a :foo]
      [b :bar]
      [c :baz]
      [d :gaz]]
https://github.com/PEZ/taplet

👍 1
pez 2021-03-17T22:22:09.001600Z

But broken in CLJS. 😢