0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 16:36:44 +01:00
svelte/site/content
Simon H d9698551fb
feat: allow #each to iterate over iterables (#8626)
closes #7425
Uses a new ensure_array_like function to use Array.from in case the variable doesn't have a length property ('length' in 'some string' fails, therefore obj?.length). This ensures other places can stay unmodified. Using for (const x of y) constructs would require large changes across the each block code where it's uncertain that it would work for all cases since the array length is needed in various places.
2023-05-26 13:29:43 +02:00
..
docs feat: allow #each to iterate over iterables (#8626) 2023-05-26 13:29:43 +02:00
examples docs: add <svelte:document> example (#8387) 2023-03-16 09:04:26 +01:00
faq docs: Expand testing FAQ section (#8205) 2023-02-21 11:54:00 +01:00
tutorial feat: custom elements rework (#8457) 2023-05-02 12:39:23 +02:00