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 8f6f077 commit 47851caCopy full SHA for 47851ca
packages/svelte/src/compiler/phases/scope.js
@@ -20,10 +20,8 @@ const UNKNOWN = Symbol('unknown');
20
/** Includes `BigInt` */
21
export const NUMBER = Symbol('number');
22
export const STRING = Symbol('string');
23
-/** Used for when you need to add `true` and `false` to the values, but can't do it for whatever reason */
24
-const BOOLEAN = Symbol('boolean');
25
26
-/** @type {Record<string, [type: NUMBER | STRING | UNKNOWN | BOOLEAN, fn?: Function]} */
+/** @type {Record<string, [type: NUMBER | STRING | UNKNOWN, fn?: Function]>} */
27
const globals = {
28
BigInt: [NUMBER, BigInt],
29
'Math.min': [NUMBER, Math.min],
0 commit comments