Victor Oliva
Victor Oliva
> The problem with the MIT license is that it didn’t imagine cloud computing and how the cloud would come to dominate the world of software. Cloud companies download open...
I need the same thing: If only the BlockRenderer would also pass the `MarkupGenerator` as a parameter, which should be quite easy, then the API would look like this in...
@Bradcomp Thank you, IMO these names are more descriptive than the ones I suggested, and short enough to be convenient.
I'm not sure, I've been using it in my project with dozens of direct dependencies (and ~hundreds of indirect) and it worked fine. Also confirmed from other devs. @vortrefflich can...
I've implemented a possible fix in https://github.com/backbone87/rxjs/pull/1 Edit: should I make a PR from my repo to rxjs directly instead? 🤔
I created a gist here, trying to reproduce the issue: https://gist.github.com/voliva/21191f5d1cb1f712a259f81e1b6bfce5 This code may look very fictional though - I just tried to show an oversimplified case. In our solution,...
@MaxGraey Although I can see what you mean, I think that's not a good example because atm if you try casting `value` to `boolean` TS will report an error (I...
Yes, I don't think this can actually be fixed. I've stepped many times on this stone, also with `withLatestFrom`. ```ts const source$ = defer(() => result$).pipe( .... ); const result$...
I think this is a limitation on Typescript rather than RxJS. With TS 5.1 or before, you couldn't do the following: ```ts const a = true; // b is Array...
I think this is because of the test setup.... you are mocking the `subscribe` functions of your observable so that it returns a `subscription`, but then it's not calling the...