Fork me on GitHub
#rewrite-clj
<
2023-06-14
>
alex17:06:17

What's the recommended way to check that my current zloc is a let form i.e. how do I check equality against a token: let?

borkdude18:06:47

You can use z/sexpr and then compare with let or do z/node and then take the :value of the node, this is a safer approach

thanks3 2