We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5993938 commit 5ddce01Copy full SHA for 5ddce01
packages/svelte/src/reactivity/set.js
@@ -26,9 +26,7 @@ export class SvelteSet extends Set {
26
super();
27
28
// If the value is invalid then the native exception will fire here
29
- if (DEV) {
30
- value = new Set(value);
31
- }
+ if (DEV) value = new Set(value);
32
33
if (value) {
34
for (let element of value) {
0 commit comments