re-frame

https://github.com/Day8/re-frame/blob/master/docs/README.md https://github.com/Day8/re-frame/blob/master/docs/External-Resources.md
Oliver George 2020-11-22T02:02:03.358100Z

Quiz, what does (#()) return?

Oliver George 2020-11-22T02:02:42.358200Z

For me it's () which breaks my common no-op event handler code... (reg-event-fx ::foo #())

p-himik 2020-11-22T03:55:11.358500Z

Heh, that's interesting, I wouldn't have guessed it. But your noop handler is wrong either way - it should be a 2-arity function whereas #() is a 0-arity function.