We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It'd be nice to be able to do:
{#each sections as {type, ...props}} <svelte:component this={foo[type]} {...props} /> {/each}
as an alternative to:
{#each sections as section} <svelte:component this={foo[section.type]} {...section} /> {/each}
The text was updated successfully, but these errors were encountered:
That would be really nice. I think it can be supported by extending read_context to understand the rest syntax and extending unpack_desctructuring to take a new RestPattern into consideration.
read_context
unpack_desctructuring
RestPattern
A new Bublé-esque objectWithoutProperties helper function might be needed.
objectWithoutProperties
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
It'd be nice to be able to do:
as an alternative to:
The text was updated successfully, but these errors were encountered: