Javascript – Why RxJS `startWith` does not emit when used with `lastValueFrom`?
I have an observable. I'm attempting to convert it to a promise using the lastValueFrom method. const obs = timer(1000).pipe( map(() => `First Value!`), startWith('But StartWith this') ); lastValueFrom(obs).then(console.log); Outputs: First Value! This is not what I was expecting because…