Jason Miller

Results 1188 comments of Jason Miller
trafficstars

It might be worth dropping all these how-to sections into `` so they are [collapsed by default](https://gist.github.com/ericclemmons/b146fe5da72ca1f706b2ef72a20ac39d)? ``` Summary Goes Here ...this is hidden, collapsable content... ```

Do you want to wait on this one until we get /aliases in?

I opened #458 for the `preact-compat/aliases` entry.

Sorry for the super long delay, I was taking a break from compat issues. I need to check what the performance and size hit are for dropping `.bind()` - TBH,...

The apply solution is nice and provides good safety. Any idea what the net increase/decrease in size is in switching from bind?

I want to merge the `Symbol.for` check here, but I'm still not certain we want to swap the `bind()` out. Want to split that one off?

Ah yeah that makes sense, since Preact defers `componentDidMount` until the very end of the cycle.

That'd be ideal yeah - mind cc'ing me on your change or sending me a link? I like to keep on top of these things 👍

Ah interesting, that might make this the root cause of maybe 4 different issues.

@gogoyqj that would create a closure on every call to `renderComponent()`, which is very very often. Generally we try to avoid ever creating closures (I don't think there are any...