Anonymous functions equality comparison

At this point, I’m trying to understand how it works precisely so that I take into account all that is important when I transpile anonymous functions to JS (I work on Hologram: Hologram - full stack isomorphic Elixir web framework)

Initially, I thought that I would need this information for comparisons and decoding back JS to Elixir, but it looks like it won’t be required since it seems that each anonymous function “instance” is treated as a separate entity (so two anonymous functions will never be equal).

I’m trying to confirm this, so please let me know if you think that’s not the case.