+2
-2
@@ -5,3 +5,3 @@ { | ||
| "license": "MIT", | ||
| "version": "5.53.2", | ||
| "version": "5.53.3", | ||
| "type": "module", | ||
@@ -165,3 +165,3 @@ "types": "./types/index.d.ts", | ||
| "acorn": "^8.12.1", | ||
| "aria-query": "^5.3.1", | ||
| "aria-query": "5.3.1", | ||
| "axobject-query": "^4.1.0", | ||
@@ -168,0 +168,0 @@ "clsx": "^2.1.1", |
@@ -105,3 +105,3 @@ /** @import { Source, TemplateNode } from '#client' */ | ||
| internal_set(error, e); | ||
| branches.ensure(THEN, catch_fn && ((target) => catch_fn(target, error))); | ||
| branches.ensure(CATCH, catch_fn && ((target) => catch_fn(target, error))); | ||
@@ -108,0 +108,0 @@ if (!catch_fn) { |
@@ -48,3 +48,3 @@ /** @import { ComponentContext, Effect, EffectNodes, TemplateNode } from '#client' */ | ||
| // For objects, we apply string coercion (which might make things like $state array references in the template reactive) before diffing | ||
| var str = value == null ? '' : typeof value === 'object' ? value + '' : value; | ||
| var str = value == null ? '' : typeof value === 'object' ? `${value}` : value; | ||
| // @ts-expect-error | ||
@@ -54,3 +54,3 @@ if (str !== (text.__t ??= text.nodeValue)) { | ||
| text.__t = str; | ||
| text.nodeValue = str + ''; | ||
| text.nodeValue = `${str}`; | ||
| } | ||
@@ -57,0 +57,0 @@ } |
+1
-1
@@ -7,3 +7,3 @@ // generated during release, do not modify | ||
| */ | ||
| export const VERSION = '5.53.2'; | ||
| export const VERSION = '5.53.3'; | ||
| export const PUBLIC_VERSION = '5'; |
Sorry, the diff of this file is too big to display
High entropy strings
Supply chain riskContains high entropy strings. This could be a sign of encrypted data, leaked secrets or obfuscated code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
High entropy strings
Supply chain riskContains high entropy strings. This could be a sign of encrypted data, leaked secrets or obfuscated code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
+ Added
- Removed
Updated