Conduitry
Conduitry
Yeah, as mentioned, we think it does make sense for the Svelte runtime to avoid using `Array.prototype.at`. The polyfill on your end should only need to be temporary.
I think the main thing that would appeal to me about making this a rune would be the possibility of doing this without wrapping the expression in a function. E.g.,...
Oh, apologies. I can't read. Never mind!
Yes, you can already write code like this. The suggestion here is to add this as a compiler optimization.
Unlike `onMount` where the issue is just that it won't correctly call the cleanup function if it's returned asynchronously, the issue with `$effect` is that it won't correctly mark as...
Does a conditional `style='display: none'` work for you? I don't think we want to add new API for this or make it so that every component has to account for...
The recommended way to do this currently is to put `// really big expression` inside a function and to call it both inside `if (!browser) { }` and to pass...
I'm worried about the necessary runtime code that this would force on everyone getting out of hand - and I'm also worried that it will never be perfect, and we'll...
The non-bubbling-ness of these events does make me less nervous about constructing these as synthetic events. I'm not sure whether it makes me all the way not nervous about that...
There's been a very long-standing issue about people wanting to be able to attach (primarily) classes to the ``, which we've put off because of a lack of a way...