File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 31
31
multiple ,
32
32
};
33
33
}
34
- $ : isMulti = (fileLimit === undefined || fileLimit > 1 ) && (multiple === undefined || multiple );
35
34
const dispatch = createEventDispatcher <Events >();
36
35
37
36
function proxy<T extends keyof Events , E extends CustomEvent <Events [T ]> = CustomEvent <Events [T ]>>(
42
41
dispatch (type , ev .detail );
43
42
};
44
43
}
44
+
45
+ $ : isMulti = (fileLimit === undefined || fileLimit > 1 ) && (multiple === undefined || multiple );
45
46
</script >
46
47
47
48
<div
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ export function isString(value: unknown): value is string {
13
13
return typeof value === "string" ;
14
14
}
15
15
export function isBrowser ( ) : boolean {
16
- return typeof window == "undefined" ;
16
+ return typeof window ! == "undefined" ;
17
17
}
You can’t perform that action at this time.
0 commit comments