I have a situation when I need to inform subscribers about a signal’s being changed with the same value it currently has. I am using the following example:
Example
Then I change line 58:
this.count.update((c) => c + 1);
To
this.count.update((c) => c + 0);
And nothing is logged into the Console.
Any chance a signal can emit events with duplicate values?
Thanks