Javascript – How to keep an Rxjs observable live even after errors (ignore errors)
I'm sending some values to an rxjs pipe followed by a subscription. In case of errors, I want to ignore them and continue with the remaining inputs. of('foo', 'bar', 'error', 'bazz', 'nar', 'error', 'car').subscribe(...) So I did this: async function…