subscribe won't propagate falsey values
- Linguagem predominante
- TypeScript
- Estrelas
- 3.5k
- Forks
- 173
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Descrição
I have a setup that should propagate a value (GPIO pin state in this case) to it's subscribers:
```
(function ok_toggle(pin_state) {
console.log(`ok_btn pin_state: ${pin_state}`)
ok_button_subject.next(!!Number(pin_state));
GPIO.pin_toggler(26)(1)(ok_toggle);
})(1);
```
what happens is that `falsey` values are not propagated to the subscriber.
again, point of interest i the line `ok_button_subject.next(!!Number(pin_state));` so when .next(false) is being called, subscriber doesn't get called. `ok_button_subject.next(Number(pin_state));` won't propagate either when `pin_state=0`
if modified to: `ok_button_subject.next(pin_state+"");`subscriber will get '0' and '1' values.
I would be surprised if this is intended behaviour, but want to check here.
Guia de contribuição
Nenhum guia de contribuição indexado para este repositório
Avaliação
Esta issue ainda não foi avaliada.