Christoph Bunte
Christoph Bunte
Added unit test as suggested here https://github.com/http4s/http4s/issues/6420#issuecomment-1138864091
Thank you for the feedback! After taking a second look, I don't see the point of suspending `bufferToFrame` in `F.delay`. We can even get rid of the `Async` constraint and...
You are right, `bufferToFrame` might throw. However, `flatMap` on `Pull` explicitly handles this case for us: ``` * - If evaluating `f(r)` to build the pull throws an exception, the...
Yep, except `catchNonFatal` is conveniently built into `flatMap` of `Pull` so it would be redundant, I think.
I've prepared the change but before I push it, I have to say that it does feel a bit strange to introduce the overhead of `Pull.eval(F.catchNonFatal{...}).flatMap{...}` just because we don't...
I agree 100%. In fact, your example is exactly what I had in mind in my previous comment. I still think this case is different because the `flatMap` in question...
Alas, that `radii` param is a mess to encode (probably why this method was missing in the first place).
The problem is that the `onInput` modifier is not specific to the element to which it is applied. (Unfortunately, this lives in the generated part of the code so I...
Hi @cornerman 👋 Thanks so much for your feedback! My immediate goal was to have a pure Scala.js drop-in replacement for Snabbdom so that I could remove the JS dependency...
@cornerman, regarding immutability of vnodes, I've made an attempt [here](https://github.com/buntec/scala-js-snabbdom/pull/33). Your feedback is welcome 😉 !